赞
踩
String str = "Hello";//声明一个字符串 byte[] srtbyte = str.getBytes();//使用string类的getBytes方法进行转换
srtbyte = str.getBytes("UTF-8");//设定转换的编码格式 String res = new String(srtbyte,"UTF-8");