4 public class UTFInputTest
6 public static void main(String
[] args
) throws Exception
8 InputStream f
= new FileInputStream(args
[0]);
9 UTFInputLineStream l
= new UTFInputLineStream(f
);
12 while((s
= l
.readLine()) != null) {
13 System
.err
.println("Line: " + s
);