String item = new String(b, n, m)的用法,其中b为byte[]数组,n,m为int类型....例如1:
b={'1' ,'2', '3', '4', '5', '6', '7', '8'};
String item=new String(b,...2,2)
结果 item=34
例如2:
String item=new String(b,0,3)
结果 item=123...看例子可以很清楚的看到new String(byte[] b, int n, int m)中个参数的作用。