Java Eclipse控制台未显示正确的法语字符。

huangapple go评论70阅读模式
英文:

The Java Eclipse Console dont show the correct French characteres

问题

我正在使用Eclipse IDE 2022-09(4.25.0),当我打印法文文本,如Périneau时,控制台返回P�rineau。有什么办法可以得到良好的输出?

英文:

I’m using Eclipse IDE 2022-09 (4.25.0) and when I print a French text like Périneau, the console return P�rineau.

example:

String str = "Périneau";
System.out.println(str);

console:

P�rineau

Is there something that I can do to have a good output?

答案1

得分: 1

You'll need to switch to "UTF-8".

通用选项卡(帮助 - Eclipse 平台)

> 编码
>
> 设置此启动分配的控制台的编码。如果选择__默认__,启动将继承来自工作区首选项页的当前文本文件编码设置。或者可以为此启动选择不同的编码。

英文:

You'll need to switch to "UTF-8".

Common Tab (Help - Eclipse Platform).

> Encoding
>
> Sets the encoding for the console allocated for this launch. If Default is selected the launch will inherit the current Text file encoding setting from the Workspace preference page. Or a different encoding can be selected for this launch.

huangapple
  • 本文由 发表于 2023年5月25日 04:24:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/76327178.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定