两个list比较去掉重复值
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