File dir = new File("G:\\");
String[] arr = dir.list(); //得到 String[] arr
for (String string : arr) {
if(string.endsWith(".jpg")){
System.out.println(string); //这种方式会打印出以.jpg 结尾的文件和文件夹
}
}
File[] arr = dir.listFiles(); //得到File[] arr,对象
for(File file : arr){
if(file.isFile() && file.getName().endsWith(".jpg")){
System.out.println(file); //这种方式只会打印出以.jpg 结尾的文件
}
} |
|