Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing this code to look inside a txt file and find me a string that the user gave as input. My txt file contains the lines as such (this info will be important later):

first line - blank. second line - idan third line - yosi

now, if the user inputs "idan" as the user (without the "") the code will find it. If the user puts in "yosi" it wont find it. It's like my code is reading only the second line. I'm new in programming and this is just a practice for me to learn how to read and write to files, please be patient with me.

here is the code (there is a catch and also the else statement but they where left off for length reasons):

    //Search for the specific profile inside.
        try{        
            BufferedReader br = new BufferedReader(new FileReader("d:\\profile.txt"));
            System.out.println("Searching for your Profile...");


            int linecount = 0;
            String line;
            while (br.readLine() !=null){
                linecount++;

                if(userName.contentEquals(br.readLine())){
                    System.out.println("Found, " + userName + " profile!");
                    break;
                }
                else{

                }
share|improve this question
please post the top ~5 lines from your profile.txt as well – Woot4Moo Aug 1 '11 at 20:26
userName.contentEquals(br.readLine()) You need to post the relevant code related to this line. Right now we don't have all the information about your code to give you useful input. – Feisty Mango Aug 1 '11 at 20:27

3 Answers

The problem is this:

*if(userName.contentEquals(br.readLine())){* 

you are reading an additional line. You will find it reads every other line with your implementation. That is line 2,4,6,etc

share|improve this answer

The problem is in the following place:

if(userName.contentEquals(br.readLine()))

You don't need to read it again because you have already read it in the while loop:

while (br.readLine() !=null)

So, you basically read line1 (do nothing with it), then read line2 (do something with it) and the process starts over.

share|improve this answer

You want to do something like ... String line; while((line = br.readLine()) != null) { ... }

Every call to BufferedReader.readLine() reads the next available line from the file. Since you read one line in the while statement and read the next line for the if statement, you're only checking the even numbered lines.

share|improve this answer
thanks for the reply's! I did what you and the others said and removed one "readLine" from the code but it still doesn't find the user input. here is the new code: int linecount = 0; String line; while ((line = br.readLine()) !=null){ if(userName == line){ System.out.println("Found, " + userName + " profile!"); } else{ System.out.println("couldnt find"); } – Yosi199 Aug 2 '11 at 19:43
I now read the BufferedReader api at Sun documentations and specifically the .readLine method, and it says: "A line is considered to be terminated by any one of a line feed ('\n'), a carriage return ('\r'), or a carriage return followed immediately by a linefeed." could it be that my while loop cannot read the lines of text because they are not terminated with \n \r? (which they really dont). – Yosi199 Aug 2 '11 at 19:59
1  
Don't compare Strings with ==. Use .equals(). – Jeffrey Aug 2 '11 at 22:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.