JavaIO拷贝文件示例
2018-06-18 02:48:42来源:未知 阅读 ()
1 package cn.com.demo; 2 3 import java.io.BufferedInputStream; 4 import java.io.BufferedOutputStream; 5 import java.io.FileInputStream; 6 import java.io.FileOutputStream; 7 import java.io.IOException; 8 import java.io.InputStream; 9 import java.io.OutputStream; 10 11 public class StreamDemo { 12 13 public static void main(String[] args) { 14 StreamDemo streamDemo = new StreamDemo(); 15 try { 16 String srcFile = "E:\\资料\\javaEE 5.0.chm"; 17 String tarFile = "E:\\资料\\javaEE 5.0(2).chm"; 18 streamDemo.copyFile(srcFile,tarFile); 19 } catch (Exception e) { 20 e.printStackTrace(); 21 } 22 23 } 24 /** 25 * 拷贝文件,使用带缓冲功能的BufferedInputStream和BufferedOutputStream 26 * @param srcFile 27 * @param tarFile 28 * @throws IOException 29 */ 30 public void copyFile(String srcFile, String tarFile) throws IOException { 31 InputStream input = null; 32 BufferedInputStream buffInput = null; 33 OutputStream output = null; 34 BufferedOutputStream buffOutput=null; 35 try { 36 byte[] buffer = new byte[1024]; 37 int length = 0; 38 input = new FileInputStream(srcFile); 39 buffInput = new BufferedInputStream(input); 40 output = new FileOutputStream(tarFile); 41 buffOutput = new BufferedOutputStream(output); 42 while ((length = buffInput.read(buffer)) > 0) { 43 buffOutput.write(buffer,0,length); 44 } 45 buffOutput.flush(); 46 } catch (Exception e) { 47 throw new RuntimeException(e.getMessage()); 48 } finally{ 49 if (input != null){ 50 input.close(); 51 input=null; 52 } 53 if (buffInput != null){ 54 buffInput.close(); 55 buffInput=null; 56 } 57 if (output != null){ 58 output.flush(); 59 output.close(); 60 output=null; 61 } 62 if (buffOutput != null){ 63 buffOutput.close(); 64 buffOutput=null; 65 } 66 } 67 68 } 69 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 通过与C++程序对比,彻底搞清楚JAVA的对象拷贝 2020-06-11
- Spring Boot 实现配置文件加解密原理 2020-06-08
- Java跨平台原理(字节码文件、虚拟机) 以及Java安全性 2020-06-07
- 【Java-jxl插件】【Excel文件读写报错】jxl.read.biff.BiffE 2020-06-07
- IDEA下Maven的pom文件导入依赖出现Auto build completed wit 2020-06-07
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash