Java工程師知識(shí)樹(shù) / Java基礎(chǔ)
描述
java.io.File:是文件和目錄路徑名的抽象表示痘拆,主要用于文件和目錄的創(chuàng)建、查找和刪除等操作氮墨。
java.io.File
類專門(mén)對(duì)文件進(jìn)行操作的類纺蛆,只能對(duì)文件本身進(jìn)行操作,不能對(duì)文件內(nèi)容進(jìn)行操作规揪。
明確絕對(duì)路徑與相對(duì)路徑的概念:
絕對(duì)路徑是指文件在硬盤(pán)上真正存在的路徑桥氏。
相對(duì)路徑是相對(duì)于自己的目標(biāo)文件位置。程序中使用時(shí)粒褒,相對(duì)路徑則表示相對(duì)于當(dāng)前的項(xiàng)目目錄的路徑识颊。
java.io.File內(nèi)常用字段摘要 | 字段描述 |
---|---|
static char separatorChar |
與系統(tǒng)有關(guān)的默認(rèn)名稱分隔符。 |
static String separator |
與系統(tǒng)有關(guān)的默認(rèn)名稱分隔符,為了方便祥款,它被表示為一個(gè)字符串清笨。 |
System.out.println("E:\\document\\io"+File.separatorChar+"a.txt");//拼接目錄與文件所用
System.out.println("E:\\document\\io"+File.separator+"a.txt");//拼接目錄與文件所用
System.out.println("E:\\document\\io\\a.txt");
構(gòu)造方法
構(gòu)造方法摘要 | 構(gòu)造方法描述 | 實(shí)例 |
---|---|---|
File(File parent, String child) |
根據(jù) parent 抽象路徑名和 child 路徑名字符串創(chuàng)建一個(gè)新 File 實(shí)例。 |
File parentDir = new File("E:\document\io");//父級(jí)File對(duì)象也就是文件所在目錄對(duì)象<br />String child = "a.txt";// 子路徑字符串 也就是文件名加后綴 |
File(String pathname) |
通過(guò)將給定路徑名字符串轉(zhuǎn)換為抽象路徑名來(lái)創(chuàng)建一個(gè)新 File 實(shí)例刃跛。 |
String path = "E:\document\io\a.txt"; // 文件路徑名 |
File(String parent, String child) |
根據(jù) parent 路徑名字符串和 child 路徑名字符串創(chuàng)建一個(gè)新 File 實(shí)例抠艾。 |
String parent = "E:\document\io";// 通過(guò)父路徑也就文件所在目錄<br />String child = "a.txt";// 子路徑字符串 也就是文件名加后綴 |
File(URI uri) |
通過(guò)將給定的 file: URI 轉(zhuǎn)換為一個(gè)抽象路徑名來(lái)創(chuàng)建一個(gè)新的 File 實(shí)例。 |
URI uri = URI.create("file:/E:/document/io/b.txt");//URI對(duì)象 |
File獲取與判斷功能的方法
打印測(cè)試方法
import java.io.File;
import java.net.URI;
import java.text.DateFormat;
import java.util.Date;
public class FileTest extends File {
public FileTest(String pathname) {
super(pathname);
}
public FileTest(String parent, String child) {
super(parent, child);
}
public FileTest(File parent, String child) {
super(parent, child);
}
public FileTest(URI uri) {
super(uri);
}
@Override
public String toString() {
StringBuffer str = new StringBuffer();
str.append("-----------"+super.toString()+"---------------");
// File獲取方法
str.append("\r\n");
str.append("File的名稱-getName:");
str.append(super.getName());
str.append("\r\n");
str.append("File的絕對(duì)路徑名-getAbsolutePath:");
str.append(super.getAbsolutePath());
str.append("\r\n");
/**
* getPath () 與 getAbsolutePath () 的區(qū)別在于桨昙,
* 前者獲取的是構(gòu)造 File 實(shí)例時(shí)的路徑检号,后者獲取的是 File 實(shí)例的絕對(duì)路徑。
* 當(dāng)構(gòu)造 File 實(shí)例的路徑也是絕對(duì)路徑時(shí)蛙酪,二者是一樣的齐苛。
*/
str.append("File的路徑名字符串-getPath:");
str.append(super.getPath());
str.append("\r\n");
str.append("File的路徑名字符串-toString:");
str.append(super.toString());// toString() 調(diào)用 return getPath(); 等效于getPath()
str.append("\r\n");
str.append("File的長(zhǎng)度-length:");
str.append(super.length());
str.append("\r\n");
str.append("File的最后一次被修改的時(shí)間-lastModified:");
str.append(DateFormat.getInstance().format(new Date(super.lastModified())));
str.append("\r\n");
str.append("抽象路徑名父目錄的路徑名字符串;如果此路徑名沒(méi)有指定父目錄桂塞,則返回 null-getParent:");
str.append(super.getParent());
// File判斷方法
str.append("\r\n");
str.append("File是否存在-exists:");
str.append(super.exists());
str.append("\r\n");
str.append("File是否是一個(gè)文件-isFile:");
str.append(super.isFile());
str.append("\r\n");
str.append("File是否是一個(gè)隱藏文件-isHidden:");
str.append(super.isHidden());
str.append("\r\n");
str.append("File是否是一個(gè)目錄-isDirectory:");
str.append(super.isDirectory());
str.append("\r\n");
str.append("應(yīng)用程序是否可以讀取此File-canRead:");
str.append(super.canRead());
str.append("\r\n");
str.append("應(yīng)用程序是否可以修改此File-canWrite:");
str.append(super.canWrite());
return str.toString();
}
}
測(cè)試功能代碼
import java.net.URI;
public class TestIO {
public static void main(String[] args) {
//存在的文件
FileTest file1 = new FileTest("E:\\document\\io\\a.txt");
System.out.println(file1);
//存在的目錄
FileTest file2 = new FileTest("E:\\document\\io");
System.out.println(file2);
//不存在的文件
FileTest file3 = new FileTest("E:\\document\\io\\c.txt");
System.out.println(file3);
//存在的文件通過(guò)URI方法創(chuàng)建
URI uri = URI.create("file:/E:/document/io/b.txt");
FileTest file4 = new FileTest(uri);
System.out.println(file4);
}
}
E:\\document\\io
目錄下的情況為:
創(chuàng)建與刪除方法
-
public boolean createNewFile()
:指定 File 實(shí)例的文件不存在時(shí)凹蜂,創(chuàng)建空文件 -
public boolean delete()
:刪除指定 File 實(shí)例表示的文件或目錄 -
public boolean mkdir()
:創(chuàng)建指定 File 實(shí)例表示的目錄 -
public boolean mkdirs()
:創(chuàng)建指定 File 實(shí)例表示的目錄,以及父目錄
// 文件的創(chuàng)建
File createNewFileTest = new File("E:\\document\\io\\testCreateNewFile.txt");
System.out.println("是否存在:"+createNewFileTest.exists()); // false
System.out.println("是否創(chuàng)建:"+createNewFileTest.createNewFile()); // true
System.out.println("是否創(chuàng)建:"+createNewFileTest.createNewFile()); // 以及創(chuàng)建過(guò)了所以再使用createNewFile返回false
System.out.println("是否存在:"+createNewFileTest.exists()); // true
// 目錄的創(chuàng)建
File mkdirTest= new File("newDirectory");
System.out.println("是否存在:"+mkdirTest.exists());// false
System.out.println("是否創(chuàng)建:"+mkdirTest.mkdir()); // true
System.out.println("是否存在:"+mkdirTest.exists());// true
// 創(chuàng)建多級(jí)目錄
File mkdirsTest= new File("E:\\document\\io\\newDirectoryOne\\newDirectoryTwo");
System.out.println(mkdirsTest.mkdirs());// true
// 文件的刪除
System.out.println(createNewFileTest.delete());// true
// 目錄的刪除
System.out.println(mkdirsTest.delete());// true
遍歷目錄下文件列表
-
public String[] list()
:返回一個(gè) String 數(shù)組阁危,表示指定 File 實(shí)例目錄中的所有子文件或目錄玛痊。值為File的getName()集合 -
public File[] listFiles()
:返回一個(gè) File 數(shù)組,表示指定 File 實(shí)例目錄中的所有的子文件或目錄狂打。
測(cè)試代碼:
File directory = new File("E:\\document\\io");
//獲取當(dāng)前目錄下的文件以及文件夾的名稱擂煞。File的getName()集合
String[] names = directory.list();
for(String name : names){
System.out.println(name);
}
//獲取當(dāng)前目錄下的文件以及文件夾對(duì)象
File[] files = directory.listFiles();
for (File file : files) {
System.out.println(file);
}
打印:
a.txt
b.txt
File.md
newDirectoryOne
testCreateNewFile.txt
E:\document\io\a.txt
E:\document\io\b.txt
E:\document\io\File.md
E:\document\io\newDirectoryOne
E:\document\io\testCreateNewFile.txt