1. 程式人生 > >java 讀寫操作

java 讀寫操作

函數 post new exception write tac lose 編碼 nts

java代碼:

寫入:

public void getNotice(HttpServletRequest request, String notice){
String message = JSON.toJSONString(notice);
File file = new File(request.getRealPath("/text/history.txt"));//這裏是絕對路徑。括號內的路徑自己根據自己存放的路徑來寫。
try(OutputStreamWriter op = new OutputStreamWriter(new FileOutputStream(file , true), "utf-8")){
if(!file.exists()){
file.createNewFile();
}
op.append(message);
op.write("\r\n");//這裏是換行,根據自己需求加與不加。
op.flush();
op.close();
}catch(IOException e){
e.printStackTrace();
} }

讀取:

public void postNotice (HttpServletRequest request, HttpServletResponse response){
JSONObject json = new JSONObject();
String message ="";
File file = new File(request.getRealPath("/text/history.txt"));
try{
FileInputStream in = new FileInputStream(file);
int len = 0;
byte[] buff = new byte[1024];
while((len = in.read(buff))!= -1){
message = new String(buff,0 ,len, "utf-8);
}
}catch(IOException e){

}
String str1 = JSONObject.toJSONString(message.replaceAll("\r|\n", ""));//如果上述的換行未寫,這句可以不用
json.put("str", str1);
returnMessage(response ,json); }

1.讀取時,回調函數內應打印 console.log(JSON.parse(data.str));

2.為保證不出現編碼格式錯誤 ,建議保存文本的txt 應設置為UTF-8的格式。

java 讀寫操作