IO实战-RandomAccessFile在本地实现伪断点续传
Posted Talk is cheap.Show me your cod
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IO实战-RandomAccessFile在本地实现伪断点续传相关的知识,希望对你有一定的参考价值。
准备:在磁盘中 准备一个目录文件
实现:将该文件复制到目标路径中,关掉程序,再重新打开可以在原位置继续复制。
需求如下:
- 过程中显示文件的拷贝的百分比
- 复制过程中关掉程序。
- 重新启动该程序时,若上次没有拷贝完,则提示上次拷贝还没完成,是否从上次的位置开始拷贝! 1. 是:从上次结束的位置继续拷贝。0 否:从头开始拷贝
代码如下:
public class Test02 {
public static void main(String[] args) {
File srcFile = new File("D:/test/test.zip");
File dstFile = new File("D:/test/test2.zip");
File logFile = new File(dstFile.getParentFile(),dstFile.getName() + ".log.raf");
RandomAccessFile logRaf = null;
long start = 0L;
try {
if(logFile.exists() && logFile.length() > 0){
Scanner sc = new Scanner(System.in);
System.out.println("上次拷贝结束:1 继续拷贝 0重新拷贝");
switch (sc.nextInt()) {
case 1:
logRaf = new RandomAccessFile(logFile, "rw");
start = logRaf.readLong();
copy(srcFile,dstFile,start);
break;
case 0:
copy(srcFile,dstFile,start);
default:
System.out.println("输入错误,请输入一个 0或1 的数字 进行选择");
break;
}
}else{
copy(srcFile,dstFile,start);
}
} catch (Exception e) {
e.printStackTrace();
}
}
public static void copy(File srcDir,File dstFile,long start){
long length = srcDir.length();
File logRaf = new File(dstFile.getParentFile(),dstFile.getName() + ".log.raf");
RandomAccessFile srcRandom = null;
RandomAccessFile dstRandom = null;
RandomAccessFile logRandom = null;
try {
if(length == 0){
return;
}
srcRandom = new RandomAccessFile(srcDir, "rw");
dstRandom = new RandomAccessFile(dstFile, "rw");
logRandom = new RandomAccessFile(logRaf, "rw");
long sum = start;
int read = -1;
int startavg = 0;
byte b[] = new byte[1024];
srcRandom.seek(start);
while((read = srcRandom.read(b)) != -1){
dstRandom.write(b,0,read);
sum += read;
int avg = (int)(100 * sum/length);
if(avg > startavg){
System.out.println("已经完成了%:" + avg);
startavg = avg;
}
logRandom.seek(0);
logRandom.writeLong(sum);
Thread.currentThread().sleep(1);//降低写的速度 效果明显
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if(logRandom != null){
try {
logRandom.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(dstRandom != null){
try {
dstRandom.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(srcRandom != null){
try {
srcRandom.close();
} catch (IOException e) {
e.printStackTrace();
}
}
logRaf.delete();
}
}
以上是关于IO实战-RandomAccessFile在本地实现伪断点续传的主要内容,如果未能解决你的问题,请参考以下文章