码迷,mamicode.com
首页 > 编程语言 > 详细

java_查找符合的文件。

时间:2014-06-13 19:55:49      阅读:342      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

bubuko.com,布布扣
package IOtest;

import java.io.File;

public class TestFile {
    //in linux
    private File foder = new File("/home/eblly");
    
    TestFile(){
        find(foder);
        System.out.println("============END!============");
    }

    public void find(File file){
        //有些文檔需要root權限,所以需要加上這句,以防報錯。
        try{
            File[] fileList = file.listFiles();
            for(File files : fileList){
                if(files.isFile()){
                    String name = files.getName().toLowerCase();
                    if(name.endsWith(".txt")){
                        System.out.println(name + "\t" + files.getAbsolutePath());
                    }
                }else if (files.isDirectory()){
                    find(files);
                }
            }
        }catch (Exception e){
            e.printStackTrace();
        }
    }
    
    public  static void main(String[] args){
        new TestFile();
    }
}
bubuko.com,布布扣

java_查找符合的文件。,布布扣,bubuko.com

java_查找符合的文件。

标签:style   class   blog   code   java   http   

原文地址:http://www.cnblogs.com/eblly/p/3784387.html

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