启用后,Jack Options
我无法打印带有String
特殊字符(例如欧元符号(€)或希腊字母UTF-8
支持。
String str="€";
byte[] arrByte = new byte[0];
try {
arrByte = str.getBytes("UTF-8");
} catch (UnsupportedEncodingException e) {e.printStackTrace();}
System.out.println(new String(arrByte));