java 如何在input中创建段落?

2hh7jdfx  于 2024-01-05  发布在  Java
关注(0)|答案(2)|浏览(152)
  1. import java.awt.Toolkit;
  2. import java.awt.datatransfer.Clipboard;
  3. import java.awt.datatransfer.StringSelection;
  4. import java.io.File;
  5. import java.io.FileWriter;
  6. import java.util.Scanner;
  7. import java.io.IOException;
  8. public class MyFile {
  9. private static File file = new File("text.txt");
  10. private static StringBuilder stringBuilder = new StringBuilder();
  11. public static void copyToClipboard(String text) {
  12. StringSelection stringSelection = new StringSelection(text);
  13. Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
  14. clipboard.setContents(stringSelection, null);
  15. }
  16. private String readContent() {
  17. try (Scanner fileReader = new Scanner(file)) {
  18. while (fileReader.hasNextLine()) {
  19. String line = fileReader.nextLine();
  20. stringBuilder.append(line).append("\n");
  21. }
  22. } catch (IOException e) {
  23. System.out.println("An error has occured.");
  24. e.printStackTrace();
  25. }
  26. return stringBuilder.toString();
  27. }
  28. public void write(String content) {
  29. try (FileWriter fileWriter = new FileWriter(file)) {
  30. fileWriter.write(content);
  31. } catch (IOException e) {
  32. System.out.println("An error has occured.");
  33. e.printStackTrace();
  34. }
  35. }
  36. public void read() {
  37. try (Scanner fileReader = new Scanner(file)) {
  38. while (fileReader.hasNextLine()) {
  39. String content = fileReader.nextLine();
  40. System.out.println(content);
  41. }
  42. } catch (IOException e) {
  43. System.out.println("An error has occured.");
  44. e.printStackTrace();
  45. }
  46. }
  47. public void delete() {
  48. while (true) {
  49. try (FileWriter fileWriter = new FileWriter(file)) {
  50. Scanner scan = new Scanner(System.in);
  51. System.out.println("Are you sure you want to delete all the file content (y or n)?");
  52. String answer = scan.nextLine().trim().toLowerCase();
  53. if (answer.equals("y")) {
  54. fileWriter.write("");
  55. System.out.println("Succesfully deleted all the file content.");
  56. break;
  57. } else if (answer.equals("n")) {
  58. System.out.println("Cancelling...");
  59. break;
  60. } else {
  61. System.out.println("An error has occured.");
  62. continue;
  63. }
  64. } catch (IOException e) {
  65. System.out.println("An error has occured.");
  66. e.printStackTrace();
  67. continue;
  68. }
  69. }
  70. }
  71. public void edit() {
  72. Scanner scan = new Scanner(System.in);
  73. MyFile file = new MyFile();
  74. String content = file.readContent();
  75. StringBuilder newContent = new StringBuilder();
  76. copyToClipboard(content);
  77. System.out.println("Enter new data or edit new (paste it). To stop editing, enter \"quitprogram\".");
  78. String line = "";
  79. do {
  80. line = scan.nextLine();
  81. if (line.equals("quitprogram")) {
  82. break;
  83. } else {
  84. newContent.append(line).append("\n");
  85. }
  86. } while (!line.equals("quitprogram"));
  87. file.write(newContent.toString());
  88. System.out.printf("Successfully edited the text!\n\nNew text:\n%s", newContent);
  89. }
  90. }

字符串
当我运行edit()方法时,它允许我输入一些文本,并创建一个段落在另一行上输入smt.但是如果我打开text.txt,就不会有任何段落,所有的文本都只写在一行上。
我尝试使用.append(“\n”)在输入中创建段落。然而,即使用户按Enter键并创建新行,它也不起作用。

4si2a6ki

4si2a6ki1#

你可能想使用System.lineSeparator,因为行分隔符是依赖于平台的。例如,如果你在windows中,你可能在一些文本编辑器中看不到\n作为一个新行。
也就是说,这并不理想,因为生成的文本将依赖于平台。所以,你可能看不到段落的原因可能是。
为了测试这一点,你可以改变:

  1. newContent.append(line).append("\n");

字符串
通过:

  1. newContent.append(line).append(System.lineSperator());


或者使用十六进制编辑器查看内容,看看是否有\n,或者选择一个文本编辑器,在您的平台上检测\n作为行分隔符。
我在我的系统中运行了你的代码,这是Linux,段落在那里。

mctunoxg

mctunoxg2#

我在我的电脑上编译并运行了你的程序。你的程序成功地将多行文本写入“text.txt”,直到用户按预期输入“quitprogram”。
唯一的问题是程序没有在追加模式下打开文件。这意味着每次调用write()方法时,都会在覆盖模式下创建一个新的FileWriter。因此,它从文件的开头开始写入,而不是从它停止的地方继续。
要解决这个问题,您需要修改程序,使FileWriter以追加模式打开文件。

  1. public void write(String content) {
  2. try (FileWriter fileWriter = new FileWriter(file,true)) {
  3. fileWriter.write(content);
  4. } catch (IOException e) {
  5. System.out.println("An error has occured.");
  6. e.printStackTrace();
  7. }
  8. }

字符串

相关问题