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

19 遍历某个目录下的文件

时间:2018-10-26 22:24:58      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:class   []   static   code   direct   cto   director   遍历   style   

public static void main(String[] args) {
        // TODO Auto-generated method stub
        // System.out.println("bowen");
        File file=new File("D:\\英语");
        if(file.isDirectory()){
            String[] ss=file.list();
            for(String s:ss) {
                System.out.println(s);
            }    
        }

 

19 遍历某个目录下的文件

标签:class   []   static   code   direct   cto   director   遍历   style   

原文地址:https://www.cnblogs.com/sunnybowen/p/9858488.html

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