2022年目录搜索算法 .pdf
《2022年目录搜索算法 .pdf》由会员分享,可在线阅读,更多相关《2022年目录搜索算法 .pdf(7页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、我想写个程序,用户自定义路径,然后把它的路径下的文件全部找出来。我写的搜索的,这个是递归的/ :用递归方法实现package .filesys; import java.io.*; import java.util.*; /* * * Title: 目录列表* Description: 据用户输入根目录列出子目录和其文件*/ public class DirMap / 存储根目录下文件树信息 private static Vector vcFileTree=new Vector(); / 存储用户输入的标准路径信息 private static String strDirRoot=new St
2、ring(); / 主方法 public static void main(String args)throws Exception / 暂时存储用户输入的路径 String strTmp=new String(); try / 接受用户输入搜索路径InputStreamReader reader=new InputStreamReader(System.in); BufferedReader input=new BufferedR eader(reader); System.out.println(请输入你要搜索的目录:); strTmp=input.readLine(); / 转换为标准路
3、径信息strDirRoot=strTmp.substring(0,1)+:+strTmp.substring(2); catch(IOException ioe) System.err .println(ioe.toString(); catch(StringIndexOutOfBoundsException se) / 回车空信息判断,转入搜索默认目录 System.err .println( 输入信息为空,转入搜索默认目录); / 提示 System.out.println(正在搜索,请稍候.); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - -
4、 - - - - - 名师精心整理 - - - - - - - 第 1 页,共 7 页 - - - - - - - - - / 调用 getFileTreeToVector 方法 try getFileTreeToVector(strDirRoot); / 调整向量内的确切容量vcFileTree.trimToSize(); / 打印向量内的内容for(int i=0;ivcFileTree.size();i+) System.out.println(vcFileTree.get(i); System.out.println(搜索完毕! ); catch(Exception e) System
5、.err .println(e.toString(); /* * * param strDirRoot 当前要搜索根目录名 * return 存储该根目录下文件树信息的向量 */ public static Vector getFileTreeToVector(String strDirRoot) File fileRootPath=new File(strDirRoot); /* * 判断路径是否存在 * 如果用户输入目录不存在,自动跳到C:downloads目录下 */ if(!fileRootPath.exists() System.err .println( 路径不存在,转入搜索默认路
6、径!); / 路径不存在,设置搜索默认路径strDirRoot=c:downloads; fileRootPath=new File(strDirRoot); else / 读出相对根目录下文件树信息File fileSubPath =fileRootPath.listFiles(); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 7 页 - - - - - - - - - try / 开始搜索loopSearch(fileSubPath); catch(Excepti
7、on e) System.err .println(e.toString(); return vcFileTree; / getFileTreeToVector 方法结束 /* * * param fileSubRoot 待搜索相对目录下的文件树信息 */ private static void loopSearch(File fileSubRoot) throws Exception / 如果不是空文件夹if(fileSubRoot!=null) for(int i=0;ifileSubRoot.length;i+) / 如果不是文件夹if(!fileSubRooti.isDirectory
8、() / 把文件路径信息放入Vector vcFileTree.add(fileSubR ooti); / 如果是文件夹,递归调用 else / 把文件夹路径信息放入Vecot vcFileTree.add(fileSubR ooti); / 在以该文件夹路径为相对根目录再递归搜索File fileSubPaths =fileSubRooti.listFiles(); / 递归调用loopSearch(fileSubPaths); else / loopSearch 方法结束名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年目录搜索算法 2022 目录 搜索 算法
限制150内