/**
* 分隔符
*/@test
public
void
test01()
/**
* 檔案的相關屬性
*/@test
public
void
test02()
/**
* 建立檔案
*/@test
public
void
test03()
}// 判斷該檔案是否存在
boolean flag =
false;if
(!file.
exists()
)catch
(ioexception e)
if(flag)
else
}// 刪除檔案:刪除的檔案不經過**站,直接刪除
flag = file.
delete()
; system.out.
println
("檔案刪除是否成功:"
+ flag)
;}
/**
* 遍歷目錄
*/@test
public
void
test04()
// 用來儲存目錄下的每乙個檔案物件
private
static list
fileslist =
newarraylist
<
>()
;/**
* 遍歷目錄下的所有檔案,包含子目錄
** @param file file 物件
*/public
void
showfile
(file file)
// 遍歷新增到集合中
if(files != null)}}
}public
static
void
main
(string[
] args)
File類簡單使用
file string pathname 根據乙個路徑得到file物件 file string parent,string child 根據乙個目錄和乙個子檔案 目錄得到file物件 file file parent,string child 根據乙個父file物件和乙個子檔案 目錄得到file物件...
File類的使用
file 表示磁碟或者網路的某個檔案或者資料夾,物件導向 磁碟上的檔案或者網路上的檔案,資料夾都是物件 file的物件用來封裝乙個檔案或者資料夾。建立file物件,封裝檔案 file fil3 newfile d test2 2.txt 判斷dir物件封裝的是否是乙個檔案 boolean resul...
File類的使用
j a.io.file類表示檔案或目錄,只用於表示檔案或目錄得資訊,不能用於檔案的訪問。常用的api 1.建立file物件 file file new file string path 注意 file.seperater 獲取系統分隔符,如 2.boolean file.exists 是否存在.3....