• 列出文件夹中分级目录java


    package test;
    
    import java.io.File;
    
    public class exportFileName {
        public static void main(String[] args) {
            export("D:/test/");
        }
        
        private static void export(String filePath){
            if(filePath==null){
                System.out.println("传入路径为空。");
                return;
            }
            if(filePath.endsWith("\")){
                filePath = filePath.replaceAll("\", "/");
            }
            
            File path = new File(filePath);
            if(!path.exists()){
                System.out.println(filePath+"路径不存在。");
                return;
            }
            
            File[] files = path.listFiles();
            if(files!=null&&files.length>0){
                for(File file : files){
                    getNames(file,file.getPath());
                    System.out.println("");
                }
            }
        }
        
        private static String getNames(File file, String parentName){
            if(file==null){
                return null;
            }
            
            if(file.isDirectory()){
                String pathName = file.getName();
                if(!parentName.contains(pathName)){
                    String p = file.getParentFile().getName();
                    String pTab = parentName.replaceAll(p, "");
                    pTab = pTab.replaceAll("\|-", "");
                    
                    String tab = "	";
                    pathName = pTab + tab +"|-"+pathName;
                }
                
                System.out.println(pathName);
                
                File[] files = file.listFiles();
                if(files==null||files.length==0){
                    return null;
                }
                for(File f: files){
                    getNames(f,pathName);
                }
            }else if(file.isFile()){
                String fileName = file.getName();
                if(!parentName.contains(fileName)){
                    String p = file.getParentFile().getName();
                    String pTab = parentName.replaceAll(p, "");
                    pTab = pTab.replaceAll("\|-", "");
                    
                    String tab = "	";
                    fileName = pTab + tab + "|-" + fileName;
                }
    
                System.out.println(fileName);
                return fileName;
            }
            return null;
        }
    }
  • 相关阅读:
    android监控来电显示
    android 选择本地图片并预览
    解决android http请求带中文参数会乱码(url编码)
    android连接webservice是cookies和session保持方法
    eclipse中android自动补全/提示卡机或假死
    JS中创建类得几种方式
    AJAX的简单实例应用
    JavaScript中的eval函数的用法
    JSON 入门指南
    JS中关于clientWidth、offsetWidth、scrollWidth
  • 原文地址:https://www.cnblogs.com/jinzhiming/p/12582010.html
Copyright © 2020-2023  润新知