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

IO编程——复制一个文件中的内容到另一个文件

时间:2018-02-05 12:33:24      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:exce   nal   print   trace   public   body   stack   tput   main   

public class TestIO {
public static void main(String[] args) {
File inputFile = new File("a.txt");//这个地方要考虑到a.txt和b.txt在项目中的位置
File outputFile = new File("b.txt");

//b.txt文件不存在,可以创建
if(outputFile.exists()){

}else{
try {
outputFile.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}

InputStream inputStream = null;
OutputStream outputStream = null;
int temp;
try {
inputStream = new FileInputStream(inputFile);
outputStream = new FileOutputStream(outputFile);
//读取a.txt数据并写到b.txt文件中
while((temp = inputStream.read()) != -1){
outputStream.write(temp);
}
} catch (FileNotFoundException e) {

e.printStackTrace();
Runtime.getRuntime().exit(-1);
} catch(IOException e){
e.printStackTrace();
} finally{
try{
//一定要关闭,否则可能得不到结果
inputStream.close();
outputStream.close();
}catch(Exception e){
e.printStackTrace();
}
}

}
}

IO编程——复制一个文件中的内容到另一个文件

标签:exce   nal   print   trace   public   body   stack   tput   main   

原文地址:https://www.cnblogs.com/yangpeng-jingjing/p/8416542.html

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