-1

如何让我的 Eclipse 使用 \uXXXX 符号?

我应该更改字体吗?

4

2 回答 2

0

If you're just trying to see unicode output in the console, make sure the font you're using supports unicode and that the output encoding is set to UTF-8.

When running this in my pretty vanilla install of Eclipse:

System.out.println("\u0CA0_\u0CA0");

I get this as expected in the Eclipse console output:

ಠ_ಠ
于 2012-06-24T19:57:33.543 回答
0

Eclipse 永远不会使用 \u 转义符在控制台窗口中显示。那只是不在它的保留曲目中。

但是,这可能不是您想要的。

如果您在源代码中使用 \u 转义编码了一些 Java,那么您的第一个问题是配置运行/调试配置以对控制台窗口使用适当的编码。UTF-8 通常是正确的答案。然后,您需要在 eclipse 首选项中为您选择的特定字符选择合适的字体。然而,无论你做什么,"\uxxxx" 永远不会是出来的。您将得到的是您的 unicode 转义指定的字符。

于 2012-06-24T19:49:30.550 回答