如何解析从java文件中读取的unicode

发布于 2024-11-08 01:07:29 字数 647 浏览 0 评论 0原文

我编写了一个包含以下内容的文本文件: \u0032\u0142o\u017Cy\u0142

然后我使用 FileReader 和 BufferedReader 来读取该文件。

public static void main(String[] args) throws Exception{
   FileInputStream fr = new FileInputStream("README.TXT");
   BufferedReader br = new BufferedReader(new InputStreamReader(fr,"UTF-8"));
   String s="";
   while((s=br.readLine())!=null){
      System.out.println(s);
    }
}

但输出是:\u0032\u0142o\u017Cy\u0142

当我使用

System.out.println("\u0032\u0142o\u017Cy\u0142");

这些代码时,这些代码将被解析并以正确的形式显示。

如何更改我的代码,以便文件中的 unicode 也能被解析并以正确的形式显示?

I have written a text file with the following contents: \u0032\u0142o\u017Cy\u0142

Then I have used FileReader und BufferedReader to read the file.

public static void main(String[] args) throws Exception{
   FileInputStream fr = new FileInputStream("README.TXT");
   BufferedReader br = new BufferedReader(new InputStreamReader(fr,"UTF-8"));
   String s="";
   while((s=br.readLine())!=null){
      System.out.println(s);
    }
}

But the output is: \u0032\u0142o\u017Cy\u0142.

When I used

System.out.println("\u0032\u0142o\u017Cy\u0142");

These codes will be parsed and will be shown in the right form.

How can I change my code, so that unicode from the files will also be parsed and shown in the right form?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

她说她爱他 2024-11-15 01:07:29

您想要使用 sun.tools.native2ascii反向转换文本。

new sun.tools.native2ascii.Main().convert(new String[]{"-reverse", new File("README.TXT"), convertedFile});

所以像这样的事情就可以了。

public static void main(String[] args) throws Exception{
   File convertedFile = new File("converted.txt");
   new sun.tools.native2ascii.Main().convert(new String[]{"-reverse", new File("README.TXT"), convertedFile});
   FileInputStream fr = new FileInputStream(convertedFile);
   BufferedReader br = new BufferedReader(new InputStreamReader(fr,"UTF-8"));
   String s="";
   while((s=br.readLine())!=null){
      System.out.println(s);
    }
}

You want to use sun.tools.native2ascii to reverse convert the text.

new sun.tools.native2ascii.Main().convert(new String[]{"-reverse", new File("README.TXT"), convertedFile});

So something like this will do it.

public static void main(String[] args) throws Exception{
   File convertedFile = new File("converted.txt");
   new sun.tools.native2ascii.Main().convert(new String[]{"-reverse", new File("README.TXT"), convertedFile});
   FileInputStream fr = new FileInputStream(convertedFile);
   BufferedReader br = new BufferedReader(new InputStreamReader(fr,"UTF-8"));
   String s="";
   while((s=br.readLine())!=null){
      System.out.println(s);
    }
}
尤怨 2024-11-15 01:07:29

您可以使用此处发布的源代码做逃逸。

You can use the source code posted here to do unescaping.

北城孤痞 2024-11-15 01:07:29

unicode 转义序列的解析不是 Java 标准 API 的显式部分,它仅在加载 Properties 时隐式发生。您可以从Properties的源代码中复制实现。

但最好对文件使用普通编码(例如 UTF-8)。

The parsing of unicode escape sequences is not an explicit part of the Java Standard API, it only implicitly occurs when loading Properties. You could copy the implementation from the source code of Properties.

But it would be better to use a normal encoding like UTF-8 for your file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文