码迷,mamicode.com
首页 > 其他好文 > 详细

FileCpoy --- 代码

时间:2017-07-05 13:43:48      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:oid   new   input   port   void   trace   ati   put   ack   

import java.io.* ;

public class FileCopy {
public static void main(String[] args) {
String inputFile = "D:/java03/day23/Test.txt" ;
String outputFile = "D:/LX/Test.txt" ;

FileReader r = null;
FileWriter w = null;

try {
r = new FileReader(new File(inputFile));
w = new FileWriter(new File(outputFile));
int b = 0;

while((b = r.read()) != -1) {
w.write(b);
}
w.flush();

}catch(FileNotFoundException ex) {
ex.printStackTrace();
}catch(IOException ex) {
ex.printStackTrace();
}finally {
try{
r.close();
w.close();
}catch(IOException ex) {
ex.printStackTrace();
}
}
System.out.println("复制完成!");

}
}

FileCpoy --- 代码

标签:oid   new   input   port   void   trace   ati   put   ack   

原文地址:http://www.cnblogs.com/xuewuzhijing95hao/p/7120386.html

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