GBK编码 如何将字符装换为字节数组
时间: 2024-05-08 10:21:26 浏览: 98
微信小程序String转gbk编码的byte数组
4星 · 用户满意度95%
可以使用 Java 中的 String 类的 getBytes() 方法将字符串转换为字节数组,同时可以指定编码方式,例如 GBK 编码:
```java
String str = "你好";
byte[] bytes = str.getBytes("GBK");
```
其中,"GBK" 为指定的编码方式。这样就可以将字符串 "你好" 转换为 GBK 编码的字节数组了。注意,在使用 getBytes() 方法时,需要处理可能抛出的 UnsupportedEncodingException 异常。
阅读全文