EDIT:
i have to files, FileOne and FileTwo, which in every line there is a word or more. and i want to compare these two file, and see if every line of fileOne is exact the same or piece of a line of FileTwo. I made the code below with your ideas, but i my result is to small that means that it is not ckecking all the lines of fileOne. The code below, isn't going to the next object of it1?
int index1 = 0;
int index2 = 0;
ArrayList <String> File1 = File2List(FileOne);
Iterator it1 = File1.listIterator();
ArrayList <String> File2 = File2List(FileTwo);
Iterator it2 = File2.listIterator();
while (it1.hasNext()) {
String outer = it1.next().toString();
while (it2.hasNext()) {
String inner = it2.next().toString();
index1 = outer.indexOf(inner);
if(index1 != -1) { //Or compareIgnoreCase
index2++;
it1.next();
break;
}
}
it1.next();
}
System.out.println("Result: "+ index2);
List<String>to start with, then look over that list for each line of file 1. Now, you haven't said in what way it isn't working. What's it doing compared with what you want it do do? – Jon Skeet Oct 2 '11 at 8:31