Merging two files
Hi,
I have two files say A and B
I want to append the contents of A to the end of File B...
For eg File A contains
1
2
3
4
For eg File B contains
5
6
7
8
-
OutPut should be File B should look like the following
5
6
7
8
1
2
3
4
-
Is the any optimised code in JAVA or any JAVA class to do this merging of files?
Thanks & regards
Neel

