import java.io.*;
public class ReadTest {
public static void main (String [] args) throws IOException {
FileInputStream fis = new FileInputStream ("hallo.txt");
int ch;
while ((ch = fis.read ()) != -1)
System.out.print ((char)ch);
fis.close ();
}
}