<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    zhyiwww
    用平實的筆,記錄編程路上的點點滴滴………
    posts - 536,comments - 394,trackbacks - 0

    This example lists the files and subdirectories in a directory. To list all descendant files and subdirectories under a directory, see e33 Traversing the Files and Directories Under a Directory .

    				
    						File dir = new File("directoryName");
        
        String[] children = dir.list();
        if (children == null) {
            // Either dir does not exist or is not a directory
        } else {
            for (int i=0; i<children.length; i++) {
                // Get filename of file or directory
                String filename = children[i];
            }
        }
        
        // It is also possible to filter the list of returned files.
        // This example does not return any files that start with `.'.
        FilenameFilter filter = new FilenameFilter() {
            public boolean accept(File dir, String name) {
                return !name.startsWith(".");
            }
        };
        children = dir.list(filter);
        
        
        // The list of files can also be retrieved as File objects
        File[] files = dir.listFiles();
        
        // This filter only returns directories
        FileFilter fileFilter = new FileFilter() {
            public boolean accept(File file) {
                return file.isDirectory();
            }
        };
        files = dir.listFiles(fileFilter);
    				
    		


    |----------------------------------------------------------------------------------------|
                               版權(quán)聲明  版權(quán)所有 @zhyiwww
                引用請注明來源 http://www.tkk7.com/zhyiwww   
    |----------------------------------------------------------------------------------------|
    posted on 2006-06-13 11:45 zhyiwww 閱讀(296) 評論(0)  編輯  收藏 所屬分類: code demo -java
    主站蜘蛛池模板: 免费中文熟妇在线影片 | 亚洲国产电影在线观看| 希望影院高清免费观看视频| 国产成人精品日本亚洲直接 | 亚洲第一页在线观看| 女人被免费视频网站| 少妇亚洲免费精品| 久久亚洲AV午夜福利精品一区| 桃子视频在线观看高清免费完整| 在线观看免费亚洲| 亚洲a在线视频视频| 麻豆国产人免费人成免费视频| 99精品视频在线观看免费| 亚洲人成网站在线观看播放青青| 免费a级毛片大学生免费观看| 欧洲人成在线免费| 国产精品亚洲av色欲三区| 亚洲成a人片77777老司机| 四虎免费久久影院| 最近免费中文字幕大全免费| 日本高清免费中文在线看| 亚洲黄色在线观看视频| 亚洲国产香蕉人人爽成AV片久久| 中文字幕免费观看| a级毛片免费网站| 亚洲av永久无码精品秋霞电影秋| 亚洲网站在线观看| 亚洲人成网站观看在线播放| 18勿入网站免费永久| 大地资源网高清在线观看免费| 亚洲熟妇无码一区二区三区导航| 久久久亚洲欧洲日产国码农村| 男人的天堂亚洲一区二区三区 | 永久免费av无码网站大全| 99热在线免费观看| 久久国产免费直播| 国产亚洲美女精品久久| 亚洲综合激情五月丁香六月| 久久精品国产亚洲av麻豆色欲 | 亚洲人成网站在线观看播放动漫| 久久久久久亚洲精品中文字幕|