hi everyone
how should i move the data of the multiple text file to another text file...
(for instance you have two text files
readFile1.txt and readFile2.txt
and you have to move the data of the two text files
in another file which is writeFile.txt )
how should i read the two text files at the same time and write it to another text file?..
any idea?..
all i know is reading and moving one file at a time using this method
BufferedReader br = new BufferedReader(new FileReader(read.txt))
PrintWriter pw= new PrintWriter(new FileWriter(write.txt))
:) thanks!