当前位置:网站首页>文件拷贝的实现
文件拷贝的实现
2020-11-08 21:03:00 【8Years】
public class TestIO01 {
public static void main(String[] args) {
copy("D:/aaa.txt","D:/B.txt");//把前者文件的内容拷贝到后者文件中qu
}
public static void copy(String srcfile,String destpath) {
File file=new File(srcfile);
File file1=new File(destpath);
InputStream is=null;
OutputStream os=null;
try {
is=new FileInputStream(file);
os=new FileOutputStream(file1);
byte[] car=new byte[3];
int temp;
int len;
while((len=is.read(car))!=-1){
os.write(car,0, len);
String str=new String(car,0,len);
}
os.flush();
} catch (FileNotFoundException fileNotFoundException) {
fileNotFoundException.printStackTrace();
} catch (IOException ioException) {
ioException.printStackTrace();
}finally{
try{
if(is!=null){
is.close();
}
}catch (IOException ioException){
ioException.printStackTrace();
}
try{
if(is!=null){
is.close();
}
}catch (IOException ioException){
ioException.printStackTrace();
}
}
}
}
版权声明
本文为[8Years]所创,转载请带上原文链接,感谢
https://my.oschina.net/u/4583813/blog/4707700
边栏推荐
- npm install 无响应解决方案
- Interesting article sharing: what is the difference between C language and C + +, C?
- 解决go get下载包失败问题
- Is parameter passing in go language transfer value or reference?
- Swagger介绍和应用
- AI perfume is coming. Will you buy it?
- 第五章
- 经典动态规划:最长公共子序列
- Leetcode 45 jumping game II
- Suffix expression to infix expression
猜你喜欢
使用基于GAN的过采样技术提高非平衡COVID-19死亡率预测的模型准确性
Dynamic ReLU:微软推出提点神器,可能是最好的ReLU改进 | ECCV 2020
go语言参数传递到底是传值还是传引用?
Suffix expression to infix expression
使用Fastai开发和部署图像分类器应用
PAT_甲级_1056 Mice and Rice
Package subsystem in Simulink
Tasks of the first week of information security curriculum design (analysis of 7 instructions)
不是程序员,代码也不能太丑!python官方书写规范:任何人都该了解的 pep8
Introduction and application of swagger
随机推荐
趣文分享:C 语言和 C++、C# 的区别在什么地方?
实验一作业
【Elasticsearch 技术分享】—— 十张图带大家看懂 ES 原理 !明白为什么说:ES 是准实时的!
【杂谈】JS相关的线程模型整理
程序员都应该知道的URI,一文帮你全面了解
Package subsystem in Simulink
使用基于GAN的过采样技术提高非平衡COVID-19死亡率预测的模型准确性
IT industry salary has been far ahead! Ten years later, is the programmer still a high paying profession?
数组初相识
Looking for better dynamic getter and setter solutions
MYCAT build
Mongodb add delete modify query operation
线程池运用不当的一次线上事故
学会了volatile,你变心了,我看到了
.NET Core 跨平台资源监控库及 dotnet tool 小工具
Django's simple user system (3)
Dynamic ReLU:微软推出提点神器,可能是最好的ReLU改进 | ECCV 2020
如何将PyTorch Lightning模型部署到生产中
【Elasticsearch 技术分享】—— 十张图带大家看懂 ES 原理 !明白为什么说:ES 是准实时的!
Why need to use API management platform