最新回答 / 慕用1004589
在第二个dis.readUTF();上,将鼠标移到这上面,有三个修复方法,选第一个Remove argument to match 'readUTF()'就可以了
2016-10-14
已采纳回答 / 张博
c表示当前读取到的字节 。1、c = isr.read() Reads a single character 读取单个characterthe next byte of data, or -1 if the end of the file is reached返回下一个next byte of data2、c = isr.read(byte[] , start,len) Reads characters into a portion of an array 读取多个charachters 返回t...
2016-10-14
最后打印16进制那一块,不可以写成Integer.toHexString(Arrays.toString(buf)). Integer.toHexString( )括号里面必须写int类型 而Arrays.toString(buf)) 这是一个String 类型 可以这样写 Integer.toHexString(i);
2016-10-13