当前位置:网站首页 > Java教程 > 正文

java文件复制教程



import java.io.FileInputStream; import java.io.FileOutputStream; class Main {   public static void main(String[] args) {     byte[] array = new byte[50];     try {       FileInputStream sourceFile = new FileInputStream("input.txt");       FileOutputStream destFile = new FileOutputStream("newFile");       //从input.txt读取所有数据       sourceFile.read(array);       //将所有数据写入newFile       destFile.write(array);       System.out.println("将input.txt文件复制到newFile。");       // 关闭流       sourceFile.close();       destFile.close();     }     catch (Exception e) {       e.getStackTrace();     }   } }

  • 上一篇: java struct 教程
  • 下一篇: java开发项目教程pDF
  • 版权声明


    相关文章:

  • java struct 教程2025-01-11 16:10:02
  • java2综合教程2025-01-11 16:10:02
  • java 贪吃蛇教程2025-01-11 16:10:02
  • java482全套教程2025-01-11 16:10:02
  • java项目教程pdf2025-01-11 16:10:02
  • java开发项目教程pDF2025-01-11 16:10:02
  • java安卓安装教程2025-01-11 16:10:02
  • 初级java教程2025-01-11 16:10:02
  • 达内java教程购买2025-01-11 16:10:02
  • 佳沃java安装教程2025-01-11 16:10:02