This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 public class FileLength {
2     public static void main(String []str) {
3         String filename="testfile000";
4         File fi=new File(filename);
5         long length=fi.length();
6         String st=String.valueOf((int)length);
7         System.printString(st);
8     }
9
10 }