搜索资源列表
search-file
- 2. 设计一个程序,实现文件查找。文件查找操作是一项非常基本的操作,一般的文件查找操作采用递归算法,实际上是采用“深度优先”的策略。请设计一个基于“广度优先”算法的文件查找程序。 提示:由于要找的文件往往距离待查文件夹最近的文件加中。因此,基于“广度优先”算法的文件查找的效率会优于“深度优先”算法。可以将待搜索的文件夹放入一个队列,然后列出该文件夹下所有成员:如果是文件,则与查找条件进行匹配;如果是文件夹,则将其放入队列。在次从队列头取文件夹,执行同样逻辑,直到队列为空。 - De
java-filesearch
- 一个java开发的文件搜索器,可以查找自己电脑下的文件。支持模糊查询-Developed a java file finder, you can find files under their computer. Support fuzzy queries
FileSearch
- 用java写的文本文件搜索工具,可以按文件的创建修改日期、文件类型、文件名、文件内容等搜索,并可以将符合条件的文件复制出来-Using java to write the text document search tools, you can create a modified date, file type, file name, file contents of the file and other search Press, and may be eligible files copied
fileSearch
- 用JAVA写的一个关键词检索的程序,能够读取文件,并对输入的关键词进行检索的功能。(Using JAVA to write a keyword search program, to read the document, and the input keywords to search function.)