DRAG DROP
Chain the constructors to create objects to read from a file named “in” and to write to a file named “out”

Leave a Reply to Hammedm Cancel reply
DRAG DROP
Chain the constructors to create objects to read from a file named “in” and to write to a file named “out”

reader = new BufferedReader(new FileReader(“in”));
writer = new PrintWriter(new BufferedWriter(new FileWriter(“out”)));