0 對File類相關理解

2021-10-21 20:56:56 字數 1327 閱讀 5700

是對乙個檔案或者資料夾的抽象表示

示例**

/**

* file類的相關理解

*/public

static

void

test()

else

// 刪除資料夾,注意:資料夾需要為空才能刪除,檔案能夠直接刪除

if(file.

delete()

) system.out.

println

("資料夾刪除成功");

else

system.out.

println

("資料夾刪除失敗");

// 判斷該抽象路徑是否是目錄

system.out.

println

("是否表示目錄路徑:"

+file.

isdirectory()

);system.out.

println

("是否表示檔名:"

+file.

isfile()

);}

根據指定路徑建立檔案,在建立過程中返回過程資訊

**:

/**

* 建立 檔案

* @param file 檔案物件

* @throws ioexception 異常

*/public

static

void

createfile

(file file)

throws ioexception

else

system.out.

println()

;}

根據指定路徑建立資料夾,在建立過程中返回過程資訊

建立資料夾方法:

/**

* 建立 資料夾

* @param file 資料夾物件

*/public

static

void

createfolder

(file file)

else

system.out.

println()

;}

列印該資料夾下的所有檔名

**

/**

* 便利該資料夾下的所有檔案

* @param file 指定資料夾

*/public

static

void

readallfile

(file file)

else

}}

C 鍵值對類相關

一 c 鍵值對類有以下類 idictionaryidc new dictionary keyvaluepairpar keyvaluepair shoplistcombobox.selecteditem hashtable ht new hashtable file建立乙個hashtable例項 h...

C 鍵值對類相關

一 c 鍵值對類有以下類 idictionaryidc new dictionary keyvaluepairpar keyvaluepair shoplistcombobox.selecteditem hashtable ht new hashtable file建立乙個hashtable例項 h...

對異常類的理解

1.異常分類 異常分為 語法錯誤和異常 語法錯誤 語法錯誤通常自己書寫不規範等造成的規範上的錯誤 異常 異常通常由邏輯上的錯誤而造成的 比方說 除數為0等等 異常處理 while true try 內容except valueerror print your value is error while...