class Elenco {
public Elenco() {}
public String readFile(String infile) throws IOException {
BufferedReader br = new BufferedReader(new FileReader(input_file));
String temp = "";
String line = br.readLine();
while (line != null) {
line = br.readLine();
temp += line();
}
return temp;
}
}
class TestElenco {
public static void main (String [ ] args) {
Elenco lista = new Elenco();
String s = lista.readFile("input.txt");
System.out.println(s);
}
}
prova cosė