java实现编写一个模拟日记本的程序,通过在控制台输入指令,实现在本地新建日记本、打开日记本和修改日记本等功能。 (1) 用户输入指令1代表“新建日记本”,可以从控制台获取用户输入的日记内容。 (2) 指令2代表“打开日记本”,读取指定路径的txt文件的内容并输出到控制台。 (3) 指令3代表“修改日记本”,修改日记时,既可以修改新建日记本的内容,也可以修改已打开日记本的内容。 (4) 指令4代表“保存”,如果是新建的日记本需要保存,则将日记本保存到用户输入的路径;如果是打开的日记本需要保存,则将原来内容覆盖; (5) 指令5代表“退出”,即退出本系统。
时间: 2023-12-02 11:02:05 浏览: 170
一个用JAVA编写的记事本.rar_java 记事本_java小记事本_用Java做一个记_记事本 java_记事本程序
这是一个比较完整的控制台日记本程序,包括新建、打开、修改、保存和退出功能。
```java
import java.io.*;
import java.util.Scanner;
public class Diary {
private String content;
private String filePath;
private boolean isNew;
private boolean isSaved;
public Diary() {
this.content = "";
this.filePath = "";
this.isNew = true;
this.isSaved = false;
}
public void newDiary() {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入日记内容:");
this.content = scanner.nextLine();
System.out.println("请输入日记保存路径:");
String path = scanner.nextLine();
this.filePath = path;
this.isNew = false;
this.isSaved = false;
System.out.println("日记已保存到:" + path);
}
public void openDiary() {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入日记文件路径:");
String path = scanner.nextLine();
File file = new File(path);
if (!file.exists()) {
System.out.println("文件不存在!");
return;
}
try {
BufferedReader reader = new BufferedReader(new FileReader(file));
String line;
StringBuilder sb = new StringBuilder();
while ((line = reader.readLine()) != null) {
sb.append(line).append("\n");
}
this.content = sb.toString();
this.filePath = path;
this.isNew = false;
this.isSaved = true;
System.out.println("日记已打开:" + path);
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
public void editDiary() {
Scanner scanner = new Scanner(System.in);
if (this.isNew) {
System.out.println("当前为新建日记,请输入日记内容:");
this.content = scanner.nextLine();
this.isSaved = false;
} else {
System.out.println("请输入要修改的内容:");
String newContent = scanner.nextLine();
this.content = newContent;
this.isSaved = false;
}
}
public void saveDiary() {
if (this.isNew) {
System.out.println("当前为新建日记,无法保存!");
return;
}
File file = new File(this.filePath);
try {
BufferedWriter writer = new BufferedWriter(new FileWriter(file));
writer.write(this.content);
writer.close();
this.isSaved = true;
System.out.println("日记已保存到:" + this.filePath);
} catch (IOException e) {
e.printStackTrace();
}
}
public boolean isSaved() {
return this.isSaved;
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
Diary diary = new Diary();
while (true) {
System.out.println("请输入指令:");
String cmd = scanner.nextLine();
switch (cmd) {
case "1":
diary.newDiary();
break;
case "2":
diary.openDiary();
break;
case "3":
diary.editDiary();
break;
case "4":
diary.saveDiary();
break;
case "5":
if (!diary.isSaved()) {
System.out.println("当前日记未保存,是否保存?(Y/N)");
String choice = scanner.nextLine();
if (choice.equalsIgnoreCase("Y")) {
diary.saveDiary();
}
}
System.out.println("退出日记本程序!");
return;
default:
System.out.println("无效指令,请重新输入!");
}
}
}
}
```
该程序的主要逻辑是在一个 `while` 循环中,不断等待用户输入指令,根据指令执行相应的操作。每个操作都封装成了一个方法,在主循环中调用。
该程序还使用了文件读写操作,需要注意异常处理。如果发生异常,需要及时关闭文件流。同时,在保存日记本时,需要判断当前日记是否为新建,如果是新建则无法保存。
另外,为了方便用户使用,程序在每个操作后都会输出一些提示信息,告诉用户当前操作的结果。
阅读全文