您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“Java如何利用IO流實現(xiàn)簡易的記事本功能”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“Java如何利用IO流實現(xiàn)簡易的記事本功能”吧!
要求:編寫一個模擬日記本的程序,通過在控制臺輸入指令,實現(xiàn)在本地新建文件,打開日記本和修改日記本等功能。
指令1代表“新建日記本”,可以從控制臺獲取用戶輸入的日記內(nèi)容
指令2代表“打開日記本”,讀取指定路徑的TXT文件的內(nèi)容并輸出到控制臺
指令3代表“修改日記本”,修改日記本中原有的內(nèi)容
指令4代表保存
指令5代表退出
import java.io.*; import java.util.Scanner; public class IO_日記本 { /** * 模擬日記本程序 */ private static String filePath; private static String message = ""; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); while (true) { System.out.println("---------日記本---------"); System.out.println("1.寫日記"); System.out.println("2.查看日記"); System.out.println("3.修改日記"); System.out.println("4.保存"); System.out.println("5.退出"); System.out.println("注意:每次輸入內(nèi)容后記得保存!"); System.out.print("請輸入操作指令:"); int command = sc.nextInt(); switch (command) { case 1: // 1:新建文件(寫日記) createFile(); break; case 2: // 2:打開文件(查看日記) openFile(); break; case 3: // 3:修改文件 editFile(); break; case 4: // 4:保存 saveFile(); break; case 5: // 5:退出 System.out.println("謝謝使用本系統(tǒng),歡迎下次再來!"); System.exit(0); break; default: System.out.println("您輸入的指令錯誤!"); break; } } } //寫一個方法寫入文件內(nèi)容 private static void createFile() { message = "";//新建文件時,暫存文件內(nèi)容清空 Scanner sc = new Scanner(System.in); System.out.println("請輸入內(nèi)容,停止編寫請輸入:stop"); StringBuffer stb = new StringBuffer();//用于后期輸入內(nèi)容的拼接 String inputMessage = ""; while (!inputMessage.equals("stop")) {//輸入stop則停止 if (stb.length() > 0) { stb.append("\r\n");//追加換行符 } stb.append(inputMessage);//拼接輸入信息 inputMessage = sc.nextLine();//獲取輸入信息 } message = stb.toString();//將輸入內(nèi)容緩存 } //寫一個方法保存文件 private static void saveFile() throws Exception { FileWriter out = new FileWriter("文件路徑", true); out.write(message + "\r\n");//將輸入內(nèi)容寫入 message = ""; out.close(); } //寫一個方法打開文件 public static void openFile() throws Exception { Reader r = new FileReader("文件路徑"); BufferedReader br = new BufferedReader(r); // char[] c = new char[1024];//定義一個桶裝每次讀取多少個數(shù)據(jù) // int len; // while ((len = br.read(c)) != -1) {//讀取所有內(nèi)容,如果讀完所有內(nèi)容則停止 // String str = new String(c, 0, len);//每次讀取0到len的所有內(nèi)容 // System.out.print(str);//因為讀取時會自動換行所以這里我們不需要換行 // } String line; while ((line = br.readLine()) != null) {//一次讀取一行 System.out.println(line);//因為讀取一行時程序不會自己換行,所以這里我們需要給它換行 } //System.out.println();//讀完換行 } //寫一個方法修改文件 /** * 替換 * @throws IOException */ public static void editFile() throws IOException{ Scanner sc = new Scanner(System.in); //原有的內(nèi)容 System.out.println("原文件內(nèi)容:"); String str1 =sc.next();; //要替換的內(nèi)容 System.out.println("修改成:"); String str2 =sc.next(); // 讀取 File file = new File("文件路徑"); FileReader in = new FileReader(file); BufferedReader buf = new BufferedReader(in);//緩沖流 // 內(nèi)存流, 作為臨時流 CharArrayWriter tempStream = new CharArrayWriter(); // 替換 String line = null; while ( (line = buf.readLine()) != null) { // 替換每行中, 符合條件的字符串 line = line.replaceAll(str1, str2);//正則表達(dá)式 // 將該行寫入內(nèi)存 tempStream.write(line+"\r\n"); } // 關(guān)閉輸入流 buf.close(); // 將內(nèi)存中的流寫入文件 FileWriter fw = new FileWriter(file); tempStream.writeTo(fw); fw.close(); } }
到此,相信大家對“Java如何利用IO流實現(xiàn)簡易的記事本功能”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。