int c ;
while((c = bis.read())!=-1){
bos.write(c);
bos.flush();//刷新缓冲区
……………………如上所示,请问bis的read()每次是以4个字节数据赋给c吗?
从输入流读取下一个字节,可以查看API