How do I read the contents of a text file line by line into String
without using a BufferedReader
?
For example, I have a text file that looks like this inside:
Purlplemonkeys
greenGorilla
I would want to create two strings
, then use something like this
File file = new File(System.getProperty("user.dir") + "Textfile.txt");
String str = new String(file.nextLine());
String str2 = new String(file.nextLine());
That way it assigns str
the value of "Purlplemonkeys"
, and str2
the value of "greenGorilla"
.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…