JAVA的getBytes().toString()问题

String s = "100";
String newS = s.getBytes().toString();
现在,怎么从newS解析出s

String s = "100";
String newS = s.getBytes().toString(); //这个是没办法转换的。
byte[] b = s.getBytes(); //如果是这样的话,可以。
String result = "";
for(int i = 0; i < b.length; i++){
result += (char)b[i];
}
System.out.println(result);
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答