構造方法
順城網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、APP開發(fā)、自適應網(wǎng)站建設等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)建站從2013年成立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設就選創(chuàng)新互聯(lián)建站。(推薦教程:java入門教程)
File f = new File("文件路徑") File f = new File("parent","child")
創(chuàng)建一個文件:
//在工作空間目錄下創(chuàng)建a.txt的文件 File f = new File("a.txt"); f.createNewFile(); 在G:\\路徑下創(chuàng)建一個a.txt的文件.如果已經(jīng)有的話這不會重新創(chuàng)建 File f = new File("G:\\\\a.txt"); f.createNewFile(); 如果路徑寫成\\\\a.txt,會在盤符下創(chuàng)建新的文件 File f = new File("\\\\a.txt"); f.createNewFile();
創(chuàng)建一個文件夾:
//在工作空間目錄下創(chuàng)建a.txt的文件夾 File f = new File("a"); f.mkdir(); 在G:\\路徑下創(chuàng)建一個a.txt的文件夾.如果已經(jīng)有的話這不會重新創(chuàng)建 File f = new File("G:\\\\a"); f.mkdir(); 如果路徑寫成\\\\a.txt,會在盤符下創(chuàng)建新的文件夾 File f = new File("\\\\a"); f.mkdir(); 在g盤下創(chuàng)建文件夾a,a 下創(chuàng)建一個b文件夾 File f = new File("G:\\\\a\\\\b"); f.mkdirs(); //注意mkdirs(),創(chuàng)建多個文件夾
new File 的區(qū)別:
File f = new File("a");//此時f是文件夾 File f = new File("parent","child"); //此時f是文件,parent文件夾下的文件 注意:此時會在盤符根目錄下創(chuàng)建文件夾 或文件 d File f = new File("", "d"); f.createNewFile(); // f.mkdir()
(視頻教程推薦:java視頻教程)
list()方法與listFiles()方法區(qū)別:
f.list(); 返回String[]數(shù)組.里面包含了f一級目錄下的文件和文件夾名. 注意: 如果f:\\\\a\\\\b.那么b不會包含在數(shù)組中 f.listFiles() 返回File[]數(shù)組.里面包含了f一級目錄下的文件和文件夾. 注意: 如果f:\\\\a\\\\b.那么b不會包含在數(shù)組中
文件名過濾器 FilenameFilter
在f1的文件夾中過濾出后綴名為 "txt"的文件
代碼實現(xiàn):
String[] s = f1.list(new FilenameFilter() { /** * dir 需要被過濾的文件夾 name 需要別被過濾的文 件名 .此名是相對路徑 * 如果返回true 則證明是符合條件的文件.會將改文件返回到數(shù)組中 */ @Override public boolean accept(File dir, String name) { File f = new File(dir, name); if (f.isDirectory()) { return false; } if (f.getName().endsWith("txt")) { return true; } return false; } });
文件過濾器 FileFilter FilenameFilter
在f1文件夾中過濾出文件長度大于20M的文件.
代碼實現(xiàn):
File[] fs = f1.listFiles(new FileFilter() { /** * pathname 表示要被過濾的文件,注意:不是文件名 * 返ture 證明是符合條件的文件 */ @Override public boolean accept(File pathname) { if (pathname.length() > 1024 * 1024 * 20) { return true; } return false; } });
絕對路徑與相對路徑
絕對路徑 G:\\\\a.txt 相對路徑 a.txt. //相對于工作空間的路徑( G:\\andirodWorkspace\\a.txt)