Java:在控制台泰语文本打印为一些奇怪的字符

时间:2014-01-03 07:40:16

标签: java eclipse utf-8 character-encoding thai

当我在控制台中打印泰国字符时,它显示出一些奇怪的特征。

public static void main(String[] args) throws Exception{
        byte[] bytes = "ฝ่ายขาย".getBytes("TIS-620");
        String str =  new  String(bytes);
        System.out.println(str);
}

正在打印 ¢

1 个答案:

答案 0 :(得分:5)

假设您在Windows中使用eclipse,在控制台中启用UTF-8(假设您的IDE能够使用UTF-8编码Windows -> Preferences -> General -> Workspace -> Test File Encoding = UTF-8):

  1. 转到Windows -> Preferences -> Java -> Installed JREs,选择JRE和编辑。将-Dfile.encoding=UTF-8添加到默认VM参数(或者您可以编辑您的eclipse.ini并添加此参数,但它对我不起作用)
  2. enter image description here

    1. 选择支持UTF-8的控制台字体:Windows -> Preferences -> General -> Appearence -> Debug -> Console Font(选择Arial,Calibri等)
    2. enter image description here

      1. 以UTF-8编码的形式从您的方法中删除“TIS-620”显式编码
      2. <强>代码:

        public static void main(String[] args) throws Exception {
                byte[] bytes = "ฝ่ายขาย".getBytes();
        
                String str = new String(bytes);
                System.out.println(str);
            }
        

        正如评论中指出的那样,简单的字符串打印

        System.out.println("ฝ่ายขาย");
        

        <强>输出:

          

        ฝ่ายขาย