码迷,mamicode.com
首页 > 其他好文 > 详细

全盘搜索案例

时间:2019-07-19 18:28:06      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:imp   lower   表达式   mat   pat   util   rgs   绝对路径   get   

 1 package com.qianfeng.Demo;
 2 
 3 import java.io.File;
 4 import java.util.Scanner;
 5 
 6 @SuppressWarnings("all")
 7 public class Work1 {
 8     public static void main(String[] args) throws Exception {
 9         Scanner sc = new Scanner(System.in);
10         System.out.println("输入你要搜索的文件:");
11         String name = sc.next();
12         find(name);
13 //        find(new File("E:/"),name);
15     }
16     public static void find(String name) {
17         File[] roots = File.listRoots();
18         for (File root : roots) {
19             find(root,name);
20         }
21     }
22     public static void find(File root,String f) {
23         File[] files = root.listFiles();
24         if(files==null) {
25             return;
26         }
27         for (File fs : files) {
28             if(fs.isDirectory()) {
29                 find(fs,f);
30                 continue;
31             }
         //字符串搜索或者正则表达式搜索
32 if(fs.getName().toLowerCase().indexOf(f.toLowerCase()) > -1 33 || fs.getName().matches(f)) { 34 System.out.println("绝对路径为:"+fs.getAbsolutePath()); 35 } 36 } 37 } 38 }

 

全盘搜索案例

标签:imp   lower   表达式   mat   pat   util   rgs   绝对路径   get   

原文地址:https://www.cnblogs.com/aqiu-jiang/p/11214853.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!