private void removeUnwantedIds(List<Path> allIDs, Set<String> acceptedIds) {
//keep only the paths that contain string which are in acceptedIds
}
您好我正在使用Java 1.7,并希望了解如何删除allIDs
集合中包含的某些文件路径元素。 acceptedIds
是Ids的String
。如果路径包含acceptedId
集列表中的ID,则应该retain
或者删除。什么是删除不需要的路径的最有效方法。
e.g。 allIDs
SRC \测试\资源\文件\ 15 \ 54 \ 54_exampleFile.pdf
SRC \测试\资源\文件\ 15 \ 1001 \ 1001_exampleFile.pdf
e.g。 acceptedIds
54
64
101
如何从src\test\resources\file\15\1001\1001_exampleFile.pdf
列表
allIds