简单的文件搜索
程序员文章站
2022-03-15 19:38:56
...
class FileSeek {
private static File[] arr = new File[1024 * 512];
static int p = -1;
public boolean isEmpty() {// 判断是否为空
if (p > -1)
return false;
else
return true;
}
public void push(File obj) {// 压栈
p++;
arr[p] = obj;
}
public File pop() {// 出栈
if (p < 0) {
try {
throw new Exception("空堆栈");
} catch (Exception e) {
e.printStackTrace();
}
}
p--;
return arr[p + 1];
}
}
public class FileSeekTest {
public static void FunFind(String driver, String finds) {// 查找文件
FileSeek seek = new FileSeek();
File di = new File(driver);
seek.push(di);
boolean f = false;
lab: while (!seek.isEmpty()) {
// 出堆栈
File cur = seek.pop();
File[] dir = cur.listFiles();
for (File dif : dir) {
if (!dif.isHidden()) {
if (dif.isDirectory()) {// 文件夹入堆栈
seek.push(dif);
}
if (dif.isFile()) {
if (dif.getName().toLowerCase().equals(
finds.toLowerCase())) {// 判断是否为该文件
System.err
.println("找到文件\t" + dif.getAbsolutePath());
f = true;
break lab;
}
System.out.println(dif.getAbsolutePath());
}
}
}
}
if (f == false) {
System.out.println("没有找到该文件!");
}
}
public static void main(String[] args) {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
try {
System.out.println("请输入要查找的文件名:");
String find = br.readLine();
long start = System.currentTimeMillis();
FileSeekTest.FunFind("f:\\", find);
long end = System.currentTimeMillis() - start;
System.out.println("用时" + end + "毫秒");
} catch (IOException e) {
e.printStackTrace();
}
}
}
上一篇: iphone访问限制在哪 苹果手机设置访问限制方法
下一篇: Volatile不保证原子性