gpt4 book ai didi

java - 在java中将UTF-16 unicode字符转换为UTF-8

转载 作者:搜寻专家 更新时间:2023-10-30 19:45:08 33 4
gpt4 key购买 nike

当我得到 JSON 时,有\u003c 和\u003e 而不是 < 和 >。我想在 java 中将它们转换回 utf-8。任何帮助将不胜感激。谢谢。

最佳答案

try {
// Convert from Unicode to UTF-8
String string = "\u003c";
byte[] utf8 = string.getBytes("UTF-8");

// Convert from UTF-8 to Unicode
string = new String(utf8, "UTF-8");
} catch (UnsupportedEncodingException e) {
}

引用http://www.exampledepot.com/egs/java.lang/unicodetoutf8.html

关于java - 在java中将UTF-16 unicode字符转换为UTF-8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9075603/

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