获取本地磁盘得到.txt文件

public void getTXT() {
        String str ="C:\";
        log.info("获取TxT:" + str);
        refreshFileList(str);
    }
    

private void refreshFileList(String str) {
        log.info("进入方法"+str);
        File dir = new File(str);
        log.info("进入方法1"+dir);
        File[] files = dir.listFiles();
        log.info("进入方法2"+files);
        if (files == null)
            return;
        for (File file : files) {
            if (file.isDirectory()) {
                refreshFileList(file.getAbsolutePath());
            } else {
                if (file.getName().endsWith(".TXT")) {
                    log.info("========--" + file + "file.getName()" + file.getName());
                    String s = file.getName().substring(0, 19);
            //文件路径 file.getPath(); CreateConnection(s,file.getPath()); log.info(
"====wwwwwww" + s); } } } }

 

posted @ 2020-11-16 11:37  我的博客我的人生  阅读(203)  评论(0编辑  收藏  举报