如何解析从java文件中读取的unicode
我编写了一个包含以下内容的文本文件: \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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您想要使用 sun.tools.native2ascii反向转换文本。
所以像这样的事情就可以了。
You want to use sun.tools.native2ascii to reverse convert the text.
So something like this will do it.
您可以使用此处发布的源代码做逃逸。
You can use the source code posted here to do unescaping.
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 ofProperties
.But it would be better to use a normal encoding like UTF-8 for your file.