javaio小问题:byte[] buffer = new byte[1444];

//设定一次性能读取的字节数?还是说只能读取一个文件的这么多字节??求解publicvoidcopyFile(StringoldPath,StringnewPath)th... //设定一次性能读取的字节数?还是说只能读取一个文件的这么多字节??求解
public void copyFile(String oldPath, String newPath) throws IOException {
try {//进行文件的复制
int bytesum = 0;
int byteread = 0;
File oldfile = new File(oldPath);
if (oldfile.exists()) { //文件存在时
inStream = new FileInputStream(oldPath); //读入原文件
System.out.println("文件的大小是:"+inStream.available());
fs = new FileOutputStream(newPath);
byte[] buffer = new byte[1444];//设定一次性能读取的字节数?
while ((byteread = inStream.read(buffer)) != -1) {
bytesum += byteread; //字节数 文件大小
fs.write(buffer, 0, byteread);
}

inStream.close();
fs.close();
}
}catch (Exception e) {
System.out.println("复制文件操作出错");
e.printStackTrace();
}finally{
if(inStream!=null){
inStream.close();
}
if(fs!=null){
fs.close();
}
}
}
展开
 我来答
百度网友63237e6
2013-08-01
知道答主
回答量:45
采纳率:0%
帮助的人:16.7万
展开全部
一次读1444个字节数据,然后再写出
追问
可进行多次操作???还是只能操作一次??
追答
你那里不是有个while循环在判断吗?
直到条件不成立为止
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式