Java编程文件操作,将一个文件的内容复制到另一个文件中,案例代码如下:
package example;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
* 将一个文件的内容复制到另一个文件中 要采边读边写的模式,这样效率才会高
*
* @author Administrator
*
*/
public class Copy {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println(args.length);
/**
* 在args参数中传进两个文件的路径,可以在run as->run configuration的arguments设置args的参数
*
*/
if (args.length != 2) {
System.out.println("输入的参数不正确!");
System.exit(1);
}
File file1 = new File(args[0]);
File file2 = new File(args[1]);
if (!file1.exists()) {
System.out.println("源文件不存在!");
}
InputStream fileInputStream = null;
try {
fileInputStream = new FileInputStream(file1);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
OutputStream fileOutputStream = null;
try {
fileOutputStream = new FileOutputStream(file2, true);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if (fileInputStream != null && fileOutputStream != null) {
int temp = 0;
try {
/**
* 边读边写
*/
while ((temp = fileInputStream.read()) != -1) {
fileOutputStream.write(temp);
}
System.out.println("复制完成");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("复制失败");
} finally {
try {
fileInputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
fileOutputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
}
java复制文件不是用io流读取输出吗?我向来用这个
如果没有ide的话,就在dos或者终端下,运行javac ./.../T905FCopy.java 如果成功生成.class文件运行 java T905FCopy
我只记得边用inputStream读,边用outPutStream写。具体的代码我先写写看,也想知道你说的这种简单方法
FileInputStream in=new FileInputStream("f:/test.txt");
FileOutputStream out=new FileOutputStream("d:/test.txt");
byte[] bytes=new byte[512];
int len=0;
while((len=in.read(bytes))!=-1){
out.write(bytes, 0, len);
}
然后把流关闭,再抛异常就可以了
还是你自己上面的代码简单
不过查了下建议你不要那样写,那样应该是一个字节一个字节的边读取边写入,效率会比较低