buf建立的足够大,in.read(buf,0,buf.length)是一次性读完,out.write(buf,0,b)是再一次性写入,不存在偏移量的问题
2015-08-21
已采纳回答 / 资深老饕
你这样可不好哦。这种情况我们可以查看 Integer.toHexString(int i); 的API文档:“The unsigned integer value is the argument plus 2^32 if the argument is negative; otherwise, it is equal to the argument.”文档说如果参数为负,那么无符号的整数值为参数加上 2^32作为参数;否则等于该参数。那就简单了,因为这个的“慕”“课”2个字的GBK编码为 11000100...
2015-08-21