Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have 2 text files, file_1: and the other file2

file_1:

tango 12
beta 256
alpha 1700
tango 1200

file_2:

tango 12
tango 125 hello world
beta 256
alpha 1700

i need to remove lines in file_2 which contains file_1 entries. ie. read line by line from file_2, compare with file_1 lines, if match , remove , else append to a new file. matches are exact string matches, both are text files. can any one tell me how can i do it using java

share|improve this question
2  
Good luck with your homework. – Peter Lawrey Nov 23 '10 at 10:49

2 Answers

Break the problem into steps:

  1. Read a file into a list of strings
  2. Iterate over two collections of strings and compare them
  3. Write to a file
share|improve this answer

Read both file in to Collection of String.

Then compare two List and process accordingly.

Rest all things are given by duffymo , Here is how to compare two arraylist of String

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.