随机生成汉字问题,不明白这个是啥
hightpos =(176+Math.abs(random.nextInt(39)));
lowpos =(161+Math.abs(random.nextInt(93)));
byte[] b = new byte[2];
b[0] =(new Integer(hightpos).byteValue());
b[1] =( new Integer(lowpos).byteValue());
这个高,低位是啥意思,还有 Integer(hightpos).byteValue()); 这个取得是什么,蟹蟹