您好,登錄后才能下訂單哦!
java讀寫操作的案例分析?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!
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讀寫操作的案例分析大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。