Java如何将一个字符串由Unicode转换为UTF-8呢?
下文通过示例的方式讲述,Unicode转换为UTF-8的方法分享,如下所示:
try {
// Convert from Unicode to UTF-8
String str= "uihiwejava265.com";
byte[] utf8 = string.getBytes("UTF-8");
// Convert from UTF-8 to Unicode
string = new String(utf8, "UTF-8");
} catch (UnsupportedEncodingException e) {
}
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。