java中的字符串转为byte类型?怎么转
答案:1 悬赏:40 手机版
解决时间 2021-02-18 19:13
- 提问者网友:龅牙恐龙妹
- 2021-02-18 13:17
java中的字符串转为byte类型?怎么转
最佳答案
- 五星知识达人网友:長槍戰八方
- 2021-02-18 14:51
public class Test {
public static void main(String[] args) {
String str = "str";
byte[] bytes= str.getBytes();
for(byte b : bytes){
System.out.println((char)b);
}
}
}直接用String的getBytes方法就行了
public static void main(String[] args) {
String str = "str";
byte[] bytes= str.getBytes();
for(byte b : bytes){
System.out.println((char)b);
}
}
}直接用String的getBytes方法就行了
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯