java操作檔案

2021-04-13 05:34:44 字數 959 閱讀 8914

一.獲得控制台使用者輸入的資訊

/** *//**獲得控制台使用者輸入的資訊

* @return

* @throws ioexception

*/public string getinputmessage() throws ioexception...

七.建立檔案(資料夾)

1.建立資料夾  /** *//**建立資料夾

* @param path  目錄

*/public void createdir(string path)...

2.建立新檔案 /** *//**建立新檔案

* @param path 目錄

* @param filename 檔名

* @throws ioexception

*/public void createfile(string path,string filename) throws ioexception...

八.刪除檔案(目錄)

1.刪除檔案     /** *//**刪除檔案

* @param path 目錄

* @param filename 檔名

*/public void delfile(string path,string filename)...

2.刪除目錄

要利用file類的delete()方法刪除目錄時,必須保證該目錄下沒有檔案或者子目錄,否則刪除失敗,因此在實際應用中,我們要刪除目錄,必須利用遞迴刪除該目錄下的所有子目錄和檔案,然後再刪除該目錄。  /** *//**遞迴刪除資料夾

* @param path

*/public void deldir(string path)...{

file dir=new file(path);

if(dir.exists())...{

file tmp=dir.listfiles();

for(int i=0;i

JAVA 操作檔案

public class demo 建立檔案 public static boolean createfile string filepath catch ioexception e return result 建立資料夾 public static boolean createdirectory ...

Python IO操作 檔案操作

讀檔案使用python內建的函式open 可以開啟乙個檔案 類似c語言 f open file.txt r f.read f.close 檔案讀寫時可能都會出錯,產生ioerror,一旦出錯f.close 就不能用,所以我們可以使用try finally try f open file.txt r ...

基本操作 檔案操作

開啟檔案 f open yesterday r encoding utf 8 讀寫 f open yesterday w encoding utf 8 寫讀 f open yesterday a encoding utf 8 追加寫讀 f open yesterday wb 寫讀 二進位制檔案 vi...