對檔案file的操作

2021-08-25 18:49:19 字數 678 閱讀 1187

對於檔案的知識了解的很少,工作中對於這部分用的還是比較多的,而且用的還是比較深。自己應該好好學習學習這方面的知識。

/**

* 讀取資料

*/ public static string readdate()

system.out.print(sb.tostring());

file=sb.tostring();

} catch (filenotfoundexception e) catch (ioexception e)

return file;

} /**

* 寫入資料

*/ public static void writedate()

file.createnewfile();

bufferedwriter output = new bufferedwriter(new filewriter(file));

arraylist resolvelist = new arraylist();

string name=test.readdate();

resolvelist.add(name);

for (int i=0 ;ioutput.close();

} catch (exception ex)

}

Python對檔案file的操作

file 操作 my file open file.txt w 在當前目錄中建立檔名為 file.txt 的檔案 my file.write something 向檔案中寫入資料 my file.close 關閉檔案 my file open filename r 唯讀方式開啟 my file.re...

File類 對檔案的操作

void start writealltext寫入檔案,將所有的字串追加到文字中,不會進行另起一行 file.writealltext path,text1 writealllines,將所有的字串追加到文字中,第二個引數為陣列,會根據數值中的每乙個值,另起一行進行寫入 file.writealll...

利用FILE結構對檔案進行操作

利用file結構對檔案進行操作 輸入若干個學生的資料 包括學號 姓名和成績 將資料存放在student.txt檔案中 從student.txt檔案中讀取所有資料並顯示出來 include include include struct student void main file write,read...