JAVA题目 编写一个程序,用于实现文件的备份,程序运行时的命令语法为:
编写一个程序,用于实现文件的备份,程序运行时的命令语法为:Javamycopy〈sourcefile〉〈destfile〉谢谢,急...
编写一个程序,用于实现文件的备份,程序运行时的命令语法为:
Java mycopy〈sourcefile〉〈destfile〉谢谢,急 展开
Java mycopy〈sourcefile〉〈destfile〉谢谢,急 展开
展开全部
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.nio.channels.FileChannel;
public class mycopy {
public static void main(String[] args) {
if (args.length != 2) {
System.out.println("Usage: Java mycopy〈sourcefile〉〈destfile〉");
System.exit(0);
}
File sourcefile = new File(args[0]);
if (!sourcefile.exists()) {
System.out.println("sourcefile: " + args[0] + " not exists");
System.exit(0);
}
FileChannel srcChannel = null;
FileChannel dstChannel = null;
try {
srcChannel = new FileInputStream(args[0]).getChannel();
dstChannel = new FileOutputStream(args[1]).getChannel();
dstChannel.transferFrom(srcChannel, 0, srcChannel.size());
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
srcChannel.close();
dstChannel.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
需要jdk1.4的支持
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.nio.channels.FileChannel;
public class mycopy {
public static void main(String[] args) {
if (args.length != 2) {
System.out.println("Usage: Java mycopy〈sourcefile〉〈destfile〉");
System.exit(0);
}
File sourcefile = new File(args[0]);
if (!sourcefile.exists()) {
System.out.println("sourcefile: " + args[0] + " not exists");
System.exit(0);
}
FileChannel srcChannel = null;
FileChannel dstChannel = null;
try {
srcChannel = new FileInputStream(args[0]).getChannel();
dstChannel = new FileOutputStream(args[1]).getChannel();
dstChannel.transferFrom(srcChannel, 0, srcChannel.size());
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
srcChannel.close();
dstChannel.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
需要jdk1.4的支持
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
两个参数 嘛 实现很简单的 自己想
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询