I want to read a txt file by writing each line of the file into String variables, (which I use to save some data, from a basic program I'm doing) I thought of something like this
try {
FileReader fr = new FileReader("C:\Users\lucas\Desktop\teste.txt");
BufferedReader br = new BufferedReader (fr);
String linha1 = br.readLine();// Uma da variaveis
// String linha2 = (?) // Como pego a segunda linha do txt e salvo aqui ?
// String linha3 = (?)
while (linha != null){
SetFirst(linha);// Funcao do objeto o qual estao os dados guardados
linha=br.readLine();
}
System.out.println("Exiting...");
br.close();
fr.close();
} catch (Exception e) {
JOptionPane.showMessageDialog(null,e.getMessage());
}