This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
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 }