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

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

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 1

Your email address will not be published. Required fields are marked *


Hammedm

Hammedm

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