I have a text file that has following content:

ac und
accipio annehmen
ad zu
adeo hinzugehen
...

I read the text file and iterate through the lines:

Scanner sc = new Scanner(new File("translate.txt"));
while(sc.hasNext()){
 String line = sc.nextLine();       
}

Each line has two words. Is there any method in java to get the next word or do I have to split the line string to get the words?

link|improve this question

1  
Your while loop should read while(sc.hasNextLine()){ – BoltClock Jan 1 '11 at 12:30
Is this a german/latin vocable trainer? – Roflcoptr Jan 1 '11 at 12:30
yes, a little exercise on using files and hashmaps – ArtWorkAD Jan 1 '11 at 12:32
feedback

2 Answers

up vote 2 down vote accepted

You do not necessarily have to split the line because java.util.Scanner's default delimiter is whitespace.

You can just create a new Scanner object within your while statement.

    Scanner sc2 = null;
    try {
        sc2 = new Scanner(new File("translate.txt"));
    } catch (FileNotFoundException e) {
        e.printStackTrace();  
    }
    while (sc2.hasNextLine()) {
            Scanner s2 = new Scanner(sc2.nextLine());
        boolean b;
        while (b = s2.hasNext()) {
            String s = s2.next();
            System.out.println(s);
        }
    }
link|improve this answer
I want to store the words in a hashmap, so each iteration of the second loop should cover to words. is it possible to have s1.next() twice and do something like that: map.put(s1.next(), s1.next())? – ArtWorkAD Jan 1 '11 at 12:40
Yes, that should work as long as your file's formatting is correct. – Christopher Tokar Jan 1 '11 at 12:46
feedback

You already get the next line in this line of your code:

 String line = sc.nextLine();  

To get the words of a line, I would recommend to use:

String[] words = line.split(" ");
link|improve this answer
is it possible to apply a scanner to the line and scan the line using next? – ArtWorkAD Jan 1 '11 at 12:30
2  
Yes then you should modifiy your while loop: while(sc.hasNextLine()) – Roflcoptr Jan 1 '11 at 12:31
feedback

Your Answer

 
or
required, but never shown

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