首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

java文件复制步骤参考

2013-12-13 
java文件复制方法参考最快的文件复制方法private static void customBufferStreamCopy(File source, File

java文件复制方法参考

最快的文件复制方法

    private static void customBufferStreamCopy(File source, File target) {        InputStream fis = null;        OutputStream fos = null;        try {            fis = new FileInputStream(source);            fos = new FileOutputStream(target);            byte[] buf = new byte[4096];            int i;            while ((i = fis.read(buf)) != -1) {                fos.write(buf, 0, i);            }        }        catch (Exception e) {            e.printStackTrace();        } finally {            close(fis);            close(fos);        }    }

?

热点排行