码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA File方法各类文件复制操作

时间:2017-10-18 15:29:59      阅读:338      评论:0      收藏:0      [点我收藏+]

标签:log   public   ace   byte   ati   rgs   main   str   try   

import java.io.*;

public class AllFile {
    public static void main(String[] args) throws Exception {
//若使用此方法复制文本等文件中文出现乱码,请使用上一篇文本的File方法指定编码格式为gbk可以解决.
try { InputStream in = new FileInputStream("E:\\JavaLog/logs/1.jpg"); OutputStream out = new FileOutputStream("E:\\JavaLog/logs/1-copy.jpg"); byte[] bytes = new byte[1024]; int zyd = -1; while ((zyd = in.read(bytes)) != -1) { out.write(bytes, 0, zyd); } in.close(); out.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } System.out.println("文件复制成功"); } }

 

JAVA File方法各类文件复制操作

标签:log   public   ace   byte   ati   rgs   main   str   try   

原文地址:http://www.cnblogs.com/ichimoku/p/7686805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!