Hi All, I want to search this word “(Error: 87)” in my text file using Java code
I was trying to search this complete word "(Error: 87)" in my text file.
I used below java code.
String path = "C:\Temp\Error_Hunter";
String fileName = "\nvr-service.txt";
String testWord = "(Error: 87)";
int tLen = testWord.length();
int wordCntr = 0;
String file1 = path + fileName;
boolean check;
try{
FileInputStream fstream = new FileInputStream(file1);
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
String strLine;
//Read File Line By Line
while((strLine = br.readLine()) != null){
//check to see whether testWord occurs at least once in the line of text
check = strLine.toLowerCase().contains(testWord.toLowerCase());
if(check){
//get the line, and parse its words into a String array
String lineWords = strLine.split("\s+");
for(String w : lineWords)
{
if(w.length() >= tLen){
String word = w.substring(0,tLen).trim();
if(word.equalsIgnoreCase(testWord))
{
wordCntr++;
}
}
}
}
}
System.out.println("total is: " + wordCntr);
//Close the input stream
br.close();
} catch(Exception e){
e.printStackTrace();
}
In my text file, the word has 104 hits. but this is not finding the word. because it contain space in between. Kindly suggest something or edit in the code itself.
java text-files keyword-search wordsearch
add a comment |
I was trying to search this complete word "(Error: 87)" in my text file.
I used below java code.
String path = "C:\Temp\Error_Hunter";
String fileName = "\nvr-service.txt";
String testWord = "(Error: 87)";
int tLen = testWord.length();
int wordCntr = 0;
String file1 = path + fileName;
boolean check;
try{
FileInputStream fstream = new FileInputStream(file1);
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
String strLine;
//Read File Line By Line
while((strLine = br.readLine()) != null){
//check to see whether testWord occurs at least once in the line of text
check = strLine.toLowerCase().contains(testWord.toLowerCase());
if(check){
//get the line, and parse its words into a String array
String lineWords = strLine.split("\s+");
for(String w : lineWords)
{
if(w.length() >= tLen){
String word = w.substring(0,tLen).trim();
if(word.equalsIgnoreCase(testWord))
{
wordCntr++;
}
}
}
}
}
System.out.println("total is: " + wordCntr);
//Close the input stream
br.close();
} catch(Exception e){
e.printStackTrace();
}
In my text file, the word has 104 hits. but this is not finding the word. because it contain space in between. Kindly suggest something or edit in the code itself.
java text-files keyword-search wordsearch
You are splitting the line based upon spaces, so the word will never match another word that has a blank in it.
– Scary Wombat
Nov 22 '18 at 5:01
Not even sure why you are doing it, why not just print the sentence that has"(Error: 87)"
in it
– Scary Wombat
Nov 22 '18 at 5:02
UseIndexOf
function of string.
– NASSER
Nov 22 '18 at 5:16
add a comment |
I was trying to search this complete word "(Error: 87)" in my text file.
I used below java code.
String path = "C:\Temp\Error_Hunter";
String fileName = "\nvr-service.txt";
String testWord = "(Error: 87)";
int tLen = testWord.length();
int wordCntr = 0;
String file1 = path + fileName;
boolean check;
try{
FileInputStream fstream = new FileInputStream(file1);
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
String strLine;
//Read File Line By Line
while((strLine = br.readLine()) != null){
//check to see whether testWord occurs at least once in the line of text
check = strLine.toLowerCase().contains(testWord.toLowerCase());
if(check){
//get the line, and parse its words into a String array
String lineWords = strLine.split("\s+");
for(String w : lineWords)
{
if(w.length() >= tLen){
String word = w.substring(0,tLen).trim();
if(word.equalsIgnoreCase(testWord))
{
wordCntr++;
}
}
}
}
}
System.out.println("total is: " + wordCntr);
//Close the input stream
br.close();
} catch(Exception e){
e.printStackTrace();
}
In my text file, the word has 104 hits. but this is not finding the word. because it contain space in between. Kindly suggest something or edit in the code itself.
java text-files keyword-search wordsearch
I was trying to search this complete word "(Error: 87)" in my text file.
I used below java code.
String path = "C:\Temp\Error_Hunter";
String fileName = "\nvr-service.txt";
String testWord = "(Error: 87)";
int tLen = testWord.length();
int wordCntr = 0;
String file1 = path + fileName;
boolean check;
try{
FileInputStream fstream = new FileInputStream(file1);
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
String strLine;
//Read File Line By Line
while((strLine = br.readLine()) != null){
//check to see whether testWord occurs at least once in the line of text
check = strLine.toLowerCase().contains(testWord.toLowerCase());
if(check){
//get the line, and parse its words into a String array
String lineWords = strLine.split("\s+");
for(String w : lineWords)
{
if(w.length() >= tLen){
String word = w.substring(0,tLen).trim();
if(word.equalsIgnoreCase(testWord))
{
wordCntr++;
}
}
}
}
}
System.out.println("total is: " + wordCntr);
//Close the input stream
br.close();
} catch(Exception e){
e.printStackTrace();
}
In my text file, the word has 104 hits. but this is not finding the word. because it contain space in between. Kindly suggest something or edit in the code itself.
java text-files keyword-search wordsearch
java text-files keyword-search wordsearch
asked Nov 22 '18 at 4:56
kirubhaharankirubhaharan
31
31
You are splitting the line based upon spaces, so the word will never match another word that has a blank in it.
– Scary Wombat
Nov 22 '18 at 5:01
Not even sure why you are doing it, why not just print the sentence that has"(Error: 87)"
in it
– Scary Wombat
Nov 22 '18 at 5:02
UseIndexOf
function of string.
– NASSER
Nov 22 '18 at 5:16
add a comment |
You are splitting the line based upon spaces, so the word will never match another word that has a blank in it.
– Scary Wombat
Nov 22 '18 at 5:01
Not even sure why you are doing it, why not just print the sentence that has"(Error: 87)"
in it
– Scary Wombat
Nov 22 '18 at 5:02
UseIndexOf
function of string.
– NASSER
Nov 22 '18 at 5:16
You are splitting the line based upon spaces, so the word will never match another word that has a blank in it.
– Scary Wombat
Nov 22 '18 at 5:01
You are splitting the line based upon spaces, so the word will never match another word that has a blank in it.
– Scary Wombat
Nov 22 '18 at 5:01
Not even sure why you are doing it, why not just print the sentence that has
"(Error: 87)"
in it– Scary Wombat
Nov 22 '18 at 5:02
Not even sure why you are doing it, why not just print the sentence that has
"(Error: 87)"
in it– Scary Wombat
Nov 22 '18 at 5:02
Use
IndexOf
function of string.– NASSER
Nov 22 '18 at 5:16
Use
IndexOf
function of string.– NASSER
Nov 22 '18 at 5:16
add a comment |
1 Answer
1
active
oldest
votes
Instead of
String lineWords = strLine.split("\s+");
do
String tokens = strLine.split("(Error: 87)");
And then the number of occurrences of (Error: 87)
in that line would be tokens.length - 1
.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53424125%2fhi-all-i-want-to-search-this-word-error-87-in-my-text-file-using-java-code%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Instead of
String lineWords = strLine.split("\s+");
do
String tokens = strLine.split("(Error: 87)");
And then the number of occurrences of (Error: 87)
in that line would be tokens.length - 1
.
add a comment |
Instead of
String lineWords = strLine.split("\s+");
do
String tokens = strLine.split("(Error: 87)");
And then the number of occurrences of (Error: 87)
in that line would be tokens.length - 1
.
add a comment |
Instead of
String lineWords = strLine.split("\s+");
do
String tokens = strLine.split("(Error: 87)");
And then the number of occurrences of (Error: 87)
in that line would be tokens.length - 1
.
Instead of
String lineWords = strLine.split("\s+");
do
String tokens = strLine.split("(Error: 87)");
And then the number of occurrences of (Error: 87)
in that line would be tokens.length - 1
.
answered Nov 22 '18 at 5:05
KartikKartik
2,63031332
2,63031332
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53424125%2fhi-all-i-want-to-search-this-word-error-87-in-my-text-file-using-java-code%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You are splitting the line based upon spaces, so the word will never match another word that has a blank in it.
– Scary Wombat
Nov 22 '18 at 5:01
Not even sure why you are doing it, why not just print the sentence that has
"(Error: 87)"
in it– Scary Wombat
Nov 22 '18 at 5:02
Use
IndexOf
function of string.– NASSER
Nov 22 '18 at 5:16