having new variable 'inter' in-between "reorder/antialias" and "hybrid" in order...
[IRC.git] / Robust / src / Tests / ReadFile.java
1 public class ReadFile {
2     public static void main(String []str) {
3         String filename="testfile000";
4         FileInputStream fis=new FileInputStream(filename);
5         byte x[]=new byte[9];
6         fis.read(x);
7         fis.close();
8         String st=new String(x);
9         System.printString(st);
10     }
11
12 }