2

我在一个用 UTF-8 编码的文本文件上有这个文本,o|▰╹ェ╹|ツ end (◕□◕✿) end ┐(❛△❛;)当我尝试在 java 中读取它时,输出总是这样?o|??ェ?|ツ end (?□??) end ┐(?△?;)我什至尝试用 Unicode 编码它,但它仍然得到相同的文本,这是我要获取的代码打印文件

File fileDir = new File("src/mycharacters.txt");

BufferedReader reader = new BufferedReader(new InputStreamReader(
        new FileInputStream(fileDir), "UTF-8"));
String myText = null;
String line = null;
while ((line = reader.readLine()) != null) {
    myText = line;
}

System.out.print(myText);  
4

1 回答 1

4

你的阅读很好。你的写作是问题。AFAIKSystem.out上面有非 UTF 编码。尝试将其包裹在PrintStreamor中PrintWriter

niceOut = new PrintStream(System.out, true, "UTF-8");

编辑:哦等等,也许@MathSquared11235 实际上是正确的——我确实在你的输出中看到了 ツ,这应该表示 UTF 输出。所以...字体。

于 2013-07-24T02:22:43.537 回答