首页 > 代码库 > 文件的复制
文件的复制
package struts;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;public class CopyFile { public static void main(String[] args) { String newPath = "d:/stu.xls"; String oldPath = "e:/students.xls"; int sum = 0; int bytered = 0; File oldFile = new File("d:/a.txt"); if(oldFile.exists()){ try { InputStream inStream = new FileInputStream(oldPath); OutputStream outStream = new FileOutputStream(newPath); byte[] buffer = new byte[1000]; try { while((bytered = inStream.read(buffer))!=-1){ System.out.println(bytered); sum += bytered; System.out.println(sum); outStream.write(buffer, 0, bytered); } inStream.close(); } catch (IOException e) { e.printStackTrace(); } } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。