輸入流與輸出流更改檔案內容

2021-10-07 07:43:46 字數 920 閱讀 1988

/*** 

*@title: autoreplace 方法名

*@description:(修改檔案內容)

* @param newfilepath 新檔案位址(新生成的檔案位址)

* @param odlfilepath 舊檔案位址(讀的檔案位址)

* @param oldstr 舊引數

* @param newstr 新引數

* @throws ioexception(展示方法引數和返回值)

*@author:aaa

*@data 2023年10月30日

*/private

void

autoreplace

(string newfilepath,string odlfilepath,string[

] oldstr, string[

] newstr)

} out =

newprintwriter

(newfilepath)

; out.

write

(str);}

catch

(ioexception e)

finally

catch

(ioexception e)}}

// "%1%","%2%","%3%","%5%","%6%","%7%","%8%","%4%" 分別是檔案的字元

string[

] oldstr =

;string[

] newstr=

;// 執行替換方法

autoreplace

(newupdatefilepath,oldpublicfile, oldstr, newstr)

;

輸入流與輸出流

流按著資料的傳輸方向分為 輸入流 往記憶體中讀叫輸入流。輸出流 從記憶體中往外寫叫輸出流。所有輸入流都是inputstream類或者reader類的子類。類名以inputstream結尾的類都是inputstream的子類。類名以reader結尾的類都是reader類的子類。所有輸出流都是outpu...

輸入流 輸出流

接受乙個字串,遇 空格 tab 回車 都結束 用法1 單個接收 cin.get 字元變數名 可以用來接收字元 include using namespace std main char ch ch cin.get 或者cin.get ch cout 用法2 cin.get 字元陣列名,接收字元數目 ...

輸入流 輸出流

1 mkdir 必須保證路徑上的父資料夾都存在 system.out.println 建立是否成功 f1.mkdir mkdirs 建立路徑上所有不存在的資料夾 system.out.println 建立是否成功 f1.mkdirs 2 讀取檔案 try fis.close catch fileno...