字符串转byte数组
时间: 2023-06-28 14:11:24 浏览: 82
java对象转成byte数组的3种方法
在Java中,可以使用字符串的 `getBytes()` 方法将字符串转换为字节数组。例如:
```java
String str = "hello";
byte[] bytes = str.getBytes();
```
上述代码将字符串 `"hello"` 转换为字节数组 `bytes`。如果需要指定字符集,则可以在 `getBytes()` 方法中传递字符集参数。例如:
```java
String str = "你好";
byte[] bytes = str.getBytes("UTF-8");
```
上述代码将字符串 `"你好"` 使用 UTF-8 编码转换为字节数组 `bytes`。
阅读全文