java 使用read()读取的问题
InputStreamis=newFileInputStream("src/source.txt");OutputStreamos=newFileOutputStream...
InputStream is = new FileInputStream("src/source.txt");
OutputStream os = new FileOutputStream("src/destination.txt");
byte[] b = new byte[6];
int len = 0;
while ((len = is.read(b)) != -1) {
os.write(b, 0, len);
}
每次执行is.read(b) 的时候数组b的元素会被覆盖。请问为什么数组b中的元素会清空呢? 展开
OutputStream os = new FileOutputStream("src/destination.txt");
byte[] b = new byte[6];
int len = 0;
while ((len = is.read(b)) != -1) {
os.write(b, 0, len);
}
每次执行is.read(b) 的时候数组b的元素会被覆盖。请问为什么数组b中的元素会清空呢? 展开
推荐于2018-04-04
展开全部
is.read(b)
while的时候去文件里读取到byte数组中 然后写 肯定会覆盖啊 要不然后面读的跑哪里去了?
while的时候去文件里读取到byte数组中 然后写 肯定会覆盖啊 要不然后面读的跑哪里去了?
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询