我已经尝试将字节cp1252
转换为字节utf8
,但一切都是徒劳的。
例如:我有byte[] 0xB5(cp1252)
,我希望转换为byte[] 0xC3, 0xA0(utf8)
。
我想要这样:μ - > à。
我的代码但它不起作用:
public void convert(){
try {
byte[] cp1252 = new byte[]{(byte) 0xB5};
byte[] utf8= new String(cp1252, "CP-1252").getBytes("UTF-8");
// values of utf8 array are 0xC2, 0xB5 not 0xC3, 0XA0 as I expected
} catch (Exception ex) {
System.out.println(ex.getMessage());
}
}
答案 0 :(得分:2)
您应该使用"Cp1252"
作为代码页而不是"CP-1252"
public void convert(){
try {
byte[] cp1252 = new byte[]{(byte) 0xB5};
byte[] utf8= new String(cp1252, "Cp1252").getBytes("UTF-8");
} catch (Exception ex) {
System.out.println(ex.getMessage());
}
}
正如所指出的0xB5
你试图解码的不是代码页1252而且上面的代码不会给你你寻求的结果。
如果您运行以下代码,您将看到没有可进行转换的编码
try {
byte[] u = new byte[]{(byte) 0xC3, (byte) 0xA0};
SortedMap m = Charset.availableCharsets();
Set k = m.keySet();
Iterator i = k.iterator();
String encoding = "";
while (i.hasNext()) {
String e = (String) i.next();
byte[] cp = new String(u, "UTF-8").getBytes(e);
if (cp[0] == (byte) 0xB5)
{
encoding = e;
break;
}
}
System.out.println(encoding);
} catch (Exception ex) {
System.out.println(ex.getMessage());
}