Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个文件夹中有几个文件:
piratesCaribbean_part001 piratesCaribbean_part002 name.txt
当我将文件传输到另一个文件夹时,我想排除 name.txt 被传输。因为其他 2 个文件没有扩展名,所以我无法指定扩展名来过滤掉我想要传输的文件。
我如何在 Java 中做到这一点?
提前致谢 !
好吧,展示你的代码总是好的。
无论如何,对于您的问题:创建一个过滤器(实现java.io.FileFilter界面)。并使用该过滤器获取文件。
java.io.FileFilter