一个JAVA题目 文件搜索器
发布网友
发布时间:2022-04-28 18:03
我来回答
共3个回答
热心网友
时间:2022-05-23 19:55
package IO.file;
import java.io.File;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Queue;
/**
* 文件搜索器
* @author chen
*
*/
public class FileFinder {
/**
* 查找文件
* @param baseDirName 待查找的目录
* @param targetFileName 目标文件名,支持通配符形式
* @param count 期待结果数目,为0表示查找全部
* @return 满足查询条件的文件名列表
*/
public static List findFiles(String baseDirName, String targetFileName, int count) {
/**
* 算法简述:
* 从某个给定的待查找的文件夹出发,搜索该文件夹下的所有文件和子文件夹
* 如果是文件,则进行匹配,匹配成功则加入结果集,如果是文件夹,则进入队列
* 队列不空,继续上述操作,队列为空,程序结束,返回结果
*/
List fileList = new ArrayList();
// 判断目录是否存在
File baseDir = new File(baseDirName);
if(!baseDir.exists() || !baseDir.isDirectory()) {
System.out.println("查找文件失败:" + baseDirName + "不是一个目录!");
return fileList;
}
String tempName = null;
Queue queue = new LinkedList();
queue.offer(baseDir);
File tempFile = null;
while(!queue.isEmpty()) {
tempFile = (File) queue.poll();
if(tempFile.exists() && tempFile.isDirectory()) {
File[] files = tempFile.listFiles();
for(int i = 0; i < files.length; i++) {
// 如果是目录则放进队列
if(files[i].isDirectory())
queue.offer(files[i]);
else {
// 如果是文件则根据文件名与目标文件名进行匹配
tempName = files[i].getName();
if(wildcardMatch(targetFileName,tempName))
fileList.add(files[i].getAbsoluteFile());
// 如果已经到达指定的数目,则退出循环
if(count != 0 && fileList.size() > count)
return fileList;
}
}
}
}
return fileList;
}
/**
* 通配符匹配
* @param pattern 通配符模式
* @param str 待匹配的字符串
* @return 匹配成功返回true,否则返回false
*/
private static boolean wildcardMatch(String pattern, String str) {
int patternLength = pattern.length();
int strLength = str.length();
int strIndex = 0;
char ch;
for(int patternIndex = 0; patternIndex < patternLength; patternIndex++) {
ch = pattern.charAt(patternIndex);
if(ch == '*') {
// 通配符"*",表示可以匹配任意多个字符
while(strIndex < strLength) {
if(wildcardMatch(pattern.substring(patternIndex + 1), str.substring(strIndex))) {
return true;
}
strIndex++;
}
} else if(ch == '?') {
// 通配符"?"表示匹配任意一个字符
strIndex++;
if(strIndex > strLength) {
// 表示str中已经没有字符匹配"?"了
return false;
}
} else {
if(strIndex >= strLength || ch != str.charAt(strIndex))
return false;
strIndex++;
}
}
return (strIndex == strLength);
}
public static void main(String[] args) {
String baseDir = "c:/test";
String fileName = "*.txt";
int count = 0;
List result = FileFinder.findFiles(baseDir, fileName, count);
for(int i = 0; i < result.size(); i++)
System.out.println(result.get(i));
}
}
就这个了!你试试看,我这没问题
关于你的问题,肯定是你输错,漏楼输入了语句,仔细看看,我以前也经常这样
热心网友
时间:2022-05-23 19:55
package book.io;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import book.arrayset.Queue;
/**
* 实现一个支持通配符的基于广度优先算法的文件查找器
*/
public class FileFinder {
/**
* 查找文件。
* @param baseDirName 待查找的目录
* @param targetFileName 目标文件名,支持通配符形式
* @param count 期望结果数目,如果畏0,则表示查找全部。
* @return 满足查询条件的文件名列表
*/
public static List findFiles(String baseDirName, String targetFileName, int count) {
/**
* 算法简述:
* 从某个给定的需查找的文件夹出发,搜索该文件夹的所有子文件夹及文件,
* 若为文件,则进行匹配,匹配成功则加入结果集,若为子文件夹,则进队列。
* 队列不空,重复上述操作,队列为空,程序结束,返回结果。
*/
List fileList = new ArrayList();
//判断目录是否存在
File baseDir = new File(baseDirName);
if (!baseDir.exists() || !baseDir.isDirectory()){
System.out.println("文件查找失败:" + baseDirName + "不是一个目录!");
return fileList;
}
String tempName = null;
//创建一个队列,Queue在第四章有定义
Queue queue = new Queue();//实例化队列
queue.add(baseDir);//入队
File tempFile = null;
while (!queue.isEmpty()) {
//从队列中取目录
tempFile = (File) queue.pop();
if (tempFile.exists() && tempFile.isDirectory()) {
File[] files = tempFile.listFiles();
for (int i = 0; i < files.length; i++) {
//如果是目录则放进队列
if (files[i].isDirectory()) {
queue.add(files[i]);
} else {
//如果是文件则根据文件名与目标文件名进行匹配
tempName = files[i].getName();
if (FileFinder.wildcardMatch(targetFileName, tempName)) {
//匹配成功,将文件名添加到结果集
fileList.add(files[i].getAbsoluteFile());
//如果已经达到指定的数目,则退出循环
if ((count != 0) && (fileList.size() >= count)) {
return fileList;
}
}
}
}
}
}
return fileList;
}
/**
* 通配符匹配
* @param pattern 通配符模式
* @param str 待匹配的字符串
* @return 匹配成功则返回true,否则返回false
*/
private static boolean wildcardMatch(String pattern, String str) {
int patternLength = pattern.length();
int strLength = str.length();
int strIndex = 0;
char ch;
for (int patternIndex = 0; patternIndex < patternLength; patternIndex++) {
ch = pattern.charAt(patternIndex);
if (ch == '*') {
//通配符星号*表示可以匹配任意多个字符
while (strIndex < strLength) {
if (wildcardMatch(pattern.substring(patternIndex + 1),
str.substring(strIndex))) {
return true;
}
strIndex++;
}
} else if (ch == '?') {
//通配符问号?表示匹配任意一个字符
strIndex++;
if (strIndex > strLength) {
//表示str中已经没有字符匹配?了。
return false;
}
} else {
if ((strIndex >= strLength) || (ch != str.charAt(strIndex))) {
return false;
}
strIndex++;
}
}
return (strIndex == strLength);
}
public static void main(String[] paramert) {
// 在此目录中找文件
String baseDIR = "C:/temp";
// 找扩展名为txt的文件
String fileName = "*.txt";
// 最多返回5个文件
int countNumber = 5;
List resultList = FileFinder.findFiles(baseDIR, fileName, countNumber);
if (resultList.size() == 0) {
System.out.println("No File Fount.");
} else {
for (int i = 0; i < resultList.size(); i++) {
System.out.println(resultList.get(i));//显示查找结果。
}
}
}
}
在书上发现了这个代码 可是用这个无法运行啊 显示有错误 有人能告诉错误是什么原因吗
热心网友
时间:2022-05-23 19:56
【鼠-标 停--在 我-帐-号 -用-户-名“ygvvvup”上 3-秒-你-就-能 -看-到-你-要-的】
dfyia 。======= 【鼠-标停我账-号上,看“个人-简介】”============。
dfyia
ls