List A和List B, 输出A中有与B中没有的值
for (int i = 0; i < orgList.size(); i++) {
String org=orgList.get(i);
for (int j = 0; j < encashpList.size(); j++) {
String ep=encashpList.get(j);
if (org.equals(ep)) {
orgList.remove(i);
i--;
}
}
}
List A和List B, 输出A中有与B中没有的值
for (int i = 0; i < orgList.size(); i++) {
String org=orgList.get(i);
for (int j = 0; j < encashpList.size(); j++) {
String ep=encashpList.get(j);
if (org.equals(ep)) {
orgList.remove(i);
i--;
}
}
}