- public static void lis2()
- {
- File f1=new File("E:\\job\\eterm");
- String[] etr=f1.list(new FilenameFilter()
- {
- public boolean accept(File f1,String name)
- {
- return name.endsWith(".bmp");
- }
- });
-
- for(String hehe:etr)
- {
- System.out.println(hehe);
- System.out.println(new File(hehe).getAbsolutePath());
- }
-
- }
复制代码 我加了for循环的第二行,企图得到过滤完的hehe的据对路劲,结果是E:\luna\study\login.bmp
但是查找该文件目录,并没有该文件,求大大解答。。。。{:3_65:}
|
|