在java中将UTF-16 unicode字符转换为UTF-8
当我得到 JSON 时,有 \u003c 和 \u003e 而不是 <和>。我想在java中将它们转换回utf-8。任何帮助将不胜感激。谢谢。
When I got JSON then there are \u003c and \u003e instead of < and >. I want to convert them back to utf-8 in java. any help will be highly appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅http://www.exampledepot.com/egs/java.lang/unicodetoutf8。 html
refer http://www.exampledepot.com/egs/java.lang/unicodetoutf8.html
您可以尝试将字符串转换为字节数组
,然后通过指定 UTF-8 编码将其转换回字符串对象,例如
You can try converting the string into a byte array
and convert that back to a string object by specifying the UTF-8 encoding like
你也可以尝试这个
You can also try this