J2ME中的特殊字符问题

发布于 2024-11-28 12:37:51 字数 360 浏览 1 评论 0原文

我正在从 XML 中读取 unicode 字符,例如 \u09A8\u09AC\u09AE。我在 XML 标题中使用了 。当我使用 KXML2 解析器从服务器解析 xml 时,它会使每个 unicode 字符成为一个字符串。如果我将它转换为字符数组,它会给出:

Char 0: \

Char 1: u

Char 2: 0

Char 3: 9

Char 4: B

Char 5: E

如何取回我的 unicode 字符?

I am reading unicode character from XML like \u09A8\u09AC\u09AE. I have used <?xml version="1.0" encoding="utf-8"?> in the heading of XML. When I parsing xml from server using KXML2 parser it makes every unicode character a string. If I convert it to character array it gives like :

Char 0: \

Char 1: u

Char 2: 0

Char 3: 9

Char 4: B

Char 5: E

How can I get my unicode character back?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱,才寂寞 2024-12-05 12:37:51

在 XML 中,\u09A8 不是 XML 中的 Unicode 字符引用!

只有少数地方将 \u 视为 Unicode 转义符的开头,而且大部分都在 Java 区域。

在 XML 中,十六进制 Unicode 转义符为 ,十进制 Unicode 转义符为

换句话说:您得到字符 \u09B、E 后面,因为这就是 XML 包含的内容

最佳解决方案是修复此 XML生成的任何内容,以使用实际的数字实体引用。或者,您可以手动将 \u 转义符替换为相应的字符,但只有您的代码才能正确解释此非标准 XML。

In XML \u09A8 is not a Unicode character reference in XML!

There are only a few places that treat \u as the beginning of a Unicode escape, and they are mostly in the Java area.

In XML a hexidecimal Unicode escape would be and a decimal one would be .

In other words: You get the characters \, u, 0, 9, B, E back, because that's what the XML contains.

The best solution is to fix whatever produces this XML to use actual numeric entity references. Alternatively, you can manually replace the \u escapes with their corresponding characters, but then only your code will correctly interpret this non-standard XML.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文