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

输入输出流copy文件

时间:2017-08-16 20:25:49      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:desktop   sts   ace   except   ted   read   输入   string   static   

public class asd {
private static void customBufferStreamCopy(String source, String 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 {
try {
fis.close();
fos.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}

}
public static void main(String[] args) {

File f=new File("C:/Users/Administrator/Desktop/biji4.txt");
if(f.exists()){}
else {
try {
f.createNewFile();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
new asd();
asd.customBufferStreamCopy("C:/Users/Administrator/Desktop/biji4.txt", "C:/Users/Administrator/Desktop/biji3.txt");
}
}

输入输出流copy文件

标签:desktop   sts   ace   except   ted   read   输入   string   static   

原文地址:http://www.cnblogs.com/zhaosong-0102/p/7375331.html

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