码迷,mamicode.com
首页 > 其他好文 > 详细

递归显示指定文件夹下所有pdf文件

时间:2015-04-23 15:56:26      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:递归显示指定文件夹下所有pdf文件

import java.io.File;
public class readFile {
  public static void main(String[] args) throws Exception {
    //递归显示C盘下所有文件夹及其中文件
    File root = new File("C:/Users/Administrator/Desktop");
    showAllFiles(root);
  }
  public static void showAllFiles(File dir) throws Exception{
    File[] fs = dir.listFiles();
    for(int i=0; i<fs.length; i++){
      if(fs[i].isDirectory()){
          try{
           showAllFiles(fs[i]);
          }catch(Exception e){}
      }else{
       String ffHouZhui=fs[i].getName().substring(fs[i].getName().lastIndexOf(".")+1,fs[i].getName().length());//后缀名
       if(ffHouZhui.equals("pdf")){//pdf文件
        System.out.println(fs[i].getName());
       }
      }
    }
   }
}

递归显示指定文件夹下所有pdf文件

标签:递归显示指定文件夹下所有pdf文件

原文地址:http://7883830.blog.51cto.com/7873830/1637549

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!