62,621
社区成员
发帖
与我相关
我的任务
分享
int temp = 0;
try {
fis = new FileInputStream(src);
fos = new FileOutputStream(dest);
bis = new BufferedInputStream(fis);
bos = new BufferedOutputStream(fos);
while ((temp = bis.read()) != -1){
System.out.println(temp);
bos.write(temp);
}
