我开始也进场这样做,后来知道这样打就是乱码,就改方法了,不过我还是不知道为什么是乱码
public class StringDemo {
public static void main(String[] args) {
// TODO Auto-generated method stub
byte[] b = {1,5,6,23,43};
for(byte by: b){
String s = Byte.toString(new Byte(by));
System.out.println(s);
}
}
} |