java學習(1):在一個檔案夾下搜尋想要類型的所有檔案

來源:互聯網
上載者:User

標籤:new   system   java   string   span   static   檔案路徑   blog   div   

要求:在一個檔案夾下,搜尋自己想要類型的所有檔案(比如:我想要一個檔案夾中的所有txt檔案)。

import java.io.File;/** *獲得一個檔案下想要類型的所有的檔案 *@author xcx  *@time 2017年6月24日下午3:02:00 */public class GetFile {      public static void main(String[] args) {        String file = "d:\\java";//檔案夾的名稱        File f = new File(file);//建立檔案對象        String extent = ".txt";//這裡想要.txt結尾的檔案        GetFiles(f,extent);    }        public static void GetFiles(File file,String extent){        //判斷檔案是否是目錄        if(file.isDirectory()){//檔案是目錄            File[] files = file.listFiles();//得到檔案下的所有檔案            //遍曆這些檔案,看是否有所求檔案            for(File f :files){                //遍曆這些檔案進行遞迴                GetFiles(f, extent);            }            }else{//檔案不是目錄            //得到檔案路徑,判斷是否以要求結尾            String path = file.getPath();            if(path.endsWith(extent)){                //是要求的檔案,輸出路徑                System.out.println(path);            }        }    }}

此段代碼對找尋檔案時可以使用。

java學習(1):在一個檔案夾下搜尋想要類型的所有檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.