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); } } } }