lucian
lucian

Reputation: 33

reading a string from text file to be inserted into input

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

Answers (1)

Martijn Courteaux
Martijn Courteaux

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

Related Questions