当前位置 : 主页 > 编程语言 > java >

java里面String字符串和其他类型转换

来源:互联网 收集:自由互联 发布时间:2022-08-10
1 byte数组和String字符串 1-1 string 转 byte[] String str = "Hello"; byte[] srtbyte = str.getBytes(); 1-2 byte[] 转 string byte[] srtbyte; String res = new String(srtbyte); System.out.println(res); 1-3 设定编码方式相互转换


1 byte数组和String字符串

1-1 string 转 byte[]

String str = "Hello";
byte[] srtbyte = str.getBytes();

1-2 byte[] 转 string

byte[] srtbyte;
String res = new String(srtbyte);
System.out.println(res);

1-3 设定编码方式相互转换

String str = "hello";
byte[] srtbyte = null;
try {
srtbyte = str.getBytes("UTF-8");
String res = new String(srtbyte,"UTF-8");
System.out.println(res);
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block


上一篇:小学1-3年级英语单词背诵第一课
下一篇:没有了
网友评论