有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java有没有办法让程序将文本文件中的“\n”识别为换行代码?

我已经用Java创建了一个游戏有一段时间了,我曾经直接在我的代码中编写所有游戏中的文本,如下所示:

String text001 = "You're in the castle.\n\nWhere do you go next?"

但最近我决定将所有游戏中的文本写入一个文本文件,并尝试让程序读取它们并将它们放入一个字符串数组中,因为文本的数量增加了很多,这使得我的代码非常长。除了一件事外,阅读进行得很顺利。我在对话中插入了换行代码,虽然当我直接在代码中编写代码时,代码工作正常,但当我试图从文本文件中读取它们时,它们不再被识别为换行代码

它应该显示为:

You're in the castle.

Where do you go next?

但现在它显示为:

You're in the castle.\n\nWhere do you go next?

代码不再将“\n”识别为换行代码

代码如下:

import java.io.File;
import java.util.Scanner;
import java.util.StringTokenizer;

public class Main {

    public static void main(String[] args) {
        new Main();
    }

    public Main() {
        Scanner sc;
        StringTokenizer token;
        String line;
        int lineNumber = 1;
        String id[] = new String[100];
        String text[] = new String[100];

        try {
            sc = new Scanner(new File("sample.txt"));
            while ((line = sc.nextLine()) != null) {
                token = new StringTokenizer(line, "|");
                while (token.hasMoreTokens()) {
                    id[lineNumber] = token.nextToken();
                    text[lineNumber] = token.nextToken();
                    lineNumber++;
                }
            }
        } catch (Exception e) {
        }
        System.out.println(text[1]);
        String text001 = "You're in the castle.\n\nWhere do you go next?";
        System.out.println(text001);
    }
}

这是文本文件的内容:

castle|You're in the castle.\n\nWhere do you go next?
inn|You're in the inn. \n\nWhere do you go next?

如果有人告诉我如何解决这个问题,我将不胜感激。多谢各位


共 (1) 个答案

  1. # 1 楼答案

    使用

    text[lineNumber] = token.nextToken().replace("\\n", "\n");
    

    文本文件中的\n本身没有什么特别之处。它只是一个\,后面跟着一个\n

    只有在Java(或其他语言)中定义了这个字符序列——在字符或字符串文本中——应该被解释为0x0a(ASCII换行符)字符

    因此,您可以将字符序列替换为您希望它被解释为的字符序列