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

java遍历文件

时间:2021-04-27 15:01:42      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:dir   style   ack   throw   files   遍历   trace   int   lock   

java遍历文件

package com.vfsd.test;

import java.io.File;
import java.io.IOException;

public class ListFileName {
    
    public static void main(String[] args) {
        String dir="F:\\QtProject\\HGD_Project_2020\\";
        String endName=".h";
        
        try {
            listAllFile( dir, endName);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    
    public static void listAllFile(String dir,String endName) throws IOException{
        File dirFile = new File(dir);
        File[] listFiles = dirFile.listFiles();
        
        for(int k=0;k<listFiles.length;k++) {
            File indexFile = listFiles[k];
            if(indexFile.isFile()) {
                String fileName = indexFile.getName();
                if(fileName.endsWith(endName)) {
                    
                    System.out.println(fileName);
                }
            }
        }
        
        
    }

}

 

 

 

 

#######################################

java遍历文件

标签:dir   style   ack   throw   files   遍历   trace   int   lock   

原文地址:https://www.cnblogs.com/herd/p/14706664.html

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