the only method that I've found is:
Code:
FileInputStream fstream = new FileInputStream(nume);
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
while ((strLine = br.readLine()) != null)
{
System.out.println(strLine);
}
but i find this very ilogical.
isn't there a more direct aproach?