文件是不是有个协议,没4个字节必须是大于0的?
下面我写了代码:打印的结果前面都是大于0的数,到后面的时候有大于0的也有小于0的。
是为了查错用的?
public class xuesheng
{
public static void main(String[] args) throws IOException
{
FileInputStream inputStream=new FileInputStream("D:\\java\\1.zip");
int i=-1;
while ((i=inputStream.read())!=-1)
{
System.out.println(i);
}
byte[] b=new byte[1024*3000];
while ((i=inputStream.read(b))!=-1)
{
for (int j = 0; j < b.length; j++)
{
System.out.println(b[j]);
} }
}
} |