Java文件操作里面的文件复制问题
发布网友
发布时间:2022-04-29 13:38
我来回答
共4个回答
热心网友
时间:2022-06-29 01:46
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();
}
}
}
}
}
热心网友
时间:2022-06-29 01:47
java复制文件不是用io流读取输出吗?我向来用这个追问有完整代码可以贴一下吗,谢谢
追答public class Copy {
public static void main(String[] args) {
File oldfile = new File("E:/原文件.txt");
File newfile = new File("E:/复制文件.txt");
try {
FileInputStream fis = new FileInputStream(oldfile);
FileOutputStream fos = new FileOutputStream(newfile);
BufferedInputStream bis = new BufferedInputStream(fis);
BufferedOutputStream bos = new BufferedOutputStream(fos);
int a;
while((a=bis.read())!=-1){
bos.write(a);
}
bis.close();
bos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
热心网友
时间:2022-06-29 01:47
如果没有ide的话,就在dos或者终端下,运行javac ./.../T905FCopy.java 如果成功生成.class文件运行 java T905FCopy
热心网友
时间:2022-06-29 01:48
我只记得边用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);
}
然后把流关闭,再抛异常就可以了
还是你自己上面的代码简单
不过查了下建议你不要那样写,那样应该是一个字节一个字节的边读取边写入,效率会比较低