Reputation: 33
Lets say i has a file name "abc.txt"
This file has three strings " how are you "
I would like to read the strings as "how are you"
and store it into a string word2 ?
How can i do it ?
Upvotes: 3
Views: 3852
Reputation: 68847
try
{
File file = new File("abc.txt");
BufferedReader br = new BufferedReader(new FileReader(file));
String word2 = br.readLine();
br.close();
//test:
System.out.println(word2);
} catch (IOException e)
{
// Something went wrong, eg: file not found
e.printStackTrace();
}
Upvotes: 4