java编码格式转换的方法是什么
lewis
2017-02-09
22次阅读
Java编码格式转换的方法可以使用以下几种方式:
1、使用String类的构造函数进行编码转换。例如,可以使用String(byte[] bytes, Charset charset)构造函数将字节数组转换为指定编码格式的字符串,或者使用String(byte[] bytes, int offset, int length, Charset charset)构造函数将字节数组的指定部分转换为字符串。
byte[] bytes = "Hello World".getBytes(StandardCharsets.UTF_8);
String str = new String(bytes, StandardCharsets.UTF_16);
System.out.println(str); // 输出: Hello World
2、使用StandardCharsets类提供的常量进行编码转换。Java 7及以上版本提供了StandardCharsets类,其中包含一些常用的字符集编码格式。
byte[] bytes = "Hello World".getBytes(StandardCharsets.UTF_8);
String str = new String(bytes, StandardCharsets.UTF_16);
System.out.println(str); // 输出: Hello World
3、使用Charset类进行编码转换。Charset类提供了decode(ByteBuffer buffer)方法将ByteBuffer对象转换为字符串,或者使用encode(CharBuffer buffer)方法将字符串转换为ByteBuffer对象。
ByteBuffer buffer = StandardCharsets.UTF_8.encode("Hello World");
String str = StandardCharsets.UTF_16.decode(buffer).toString();
System.out.println(str); // 输出: Hello World
需要注意的是,编码转换可能会引发UnsupportedEncodingException异常,因此在使用时需要进行异常处理。

发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。