gpt4 book ai didi

国际字符的 JAXB Unmarshal 导致问号 (?)

转载 作者:行者123 更新时间:2023-12-05 01:20:58 25 4
gpt4 key购买 nike

我已经被这个问题困扰了几个星期了。我有一个从 Autonomy IDOL 搜索中收到的 XML 文档,可以将其成功解码为一组 Java 对象。但是,如果有国际字符,例如中文、日文、俄文/西里尔文,它们将被转换为问号 (?)。

XML 文档的第一行将编码设置为 UTF-8:

我正在使用以下代码进行解码操作:

public static AutnResponse convertXmlToResponse(String xml) {
AutnResponse resp = null;

try {
JAXBContext jc = JAXBContext.newInstance(AutnResponse.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();

resp = (AutnResponse) unmarshaller.unmarshal(new InputStreamReader(new ByteArrayInputStream(xml.getBytes()),"UTF-8"));
} catch(Exception ex) {
System.out.println("Caught exception trying to unmarshal XML file: " + ex.getMessage());
ex.printStackTrace(System.out);
}

return resp;
}

我忽略了什么吗?非常感谢任何帮助、提示或其他资源。我已经搜索了无数的 Google 列表,但无法解决这个问题。

最佳答案

xml.getBytes()

……应该是……

xml.getBytes("UTF-8")

...因此转码操作是对称的。

但是既然已经有了角色数据,就用...

unmarshaller.unmarshal(new StringReader(xml));

关于国际字符的 JAXB Unmarshal 导致问号 (?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20955768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com