HI ,
See the below code, I am comparing two arraylist values and getting the correct result while comparing equal. in bello example
I took the values ArrayList a1=a,b,c,d,e and ArrayList a2=a,b,c.
If I compare a1==a2 result : a,b,c is comming correctly. if I try to compare not equal position ,I want to get the data d,e. If any body know please modify the code and send me back.
Thank you advanced..
ArrayList a1=new ArrayList();
ArrayList a2=new ArrayList();
a1.add("a");
a1.add("b");
a1.add("c");
a1.add("d");
a1.add("e");
a2.add("a");
a2.add("b");
a2.add("c");
for(int i=0;i<a1.size();i++){
String str1 = (String) a1.get(i);
for(int j=0;j<a2.size();j++){
String str2 = (String) a2.get(j);
//int result = str1.compareTo(str2);
// if (result == 0)
//System.out.println(str1+ " = " + str2);
//else if (result > 0)
//System.out.println(str1+ " > " + str2);
if (str2.equalsIgnoreCase(str1))
System.out.println(str1);
}
}