/** * 解析文件中的二进制文件 */ public static String[] getFileName(File file){ File[] fileList = file.listFiles(); String[] fileNameArray = null; String fileName = ""; for (int i = 0; i < fileList.length; i++) { if (fileList[i].isFile()) { if(fileList[i].getName().contains(".tar.gz")){ //这个文件不需要解析 }else{ if(i != fileList.length){ fileName += fileList[i].getName()+"/"; }else{ fileName += fileList[i].getName(); } } } //获取文件中的目录信息 /*if (fileList[i].isDirectory()) { String fileName = fileList[i].getName(); System.out.println("目录:" + fileName); }*/ } fileNameArray = fileName.split("/"); return fileNameArray; }
原文地址:https://www.cnblogs.com/huyanlon/p/10337642.html
时间: 2024-10-17 07:54:18