Write the StreamsLab class with two static methods. Write a method reading an ASCII file. Write a method writing into an ASCII file. Look at Using Streams Example. Hints: Use method prototypes below: public static String readFile(String iFilename); public static boolean writeFile(String iFilename, String iString);
Back to I/O Classes Overview