I have the folowing txt file:
COL1 COL2 Col3
1 2 3
4 5 6
7 8 9
And onother txt file:
COL1
11
44
77
What I want to do is to repalce the first column of the first txt file, with the first column of the second column.
Is there a fast way to do that using java, or I have to replace line by line?