断点续传小demo

package duandianxuchuan;

import java.io.*;

public class Duandianxuchaun1 {
    private static int position = -1;
    public static void main(String[] args) {
        //源文件和目标文件
        File sourceFile = new File("D:/","test.txt");
        File targetFile = new File("E:/", "test.txt");
        //创建流
        FileInputStream fis = null;
        FileOutputStream fos = null;
        byte[] buf = new byte[1];

        try {
            fis = new FileInputStream(sourceFile);
            fos = new FileOutputStream(targetFile);
            while(fis.read(buf)!=-1) {
                fos.write(buf);
                //当读取3个的时候模拟出错
                if(targetFile.length() == 3){

                    position = 3;
                    throw new FileAccessException();
                }
            }
        } catch (FileAccessException e) {
            keepGoing(sourceFile,targetFile, position);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {

        }finally {

            try {
                // 关闭输入输出流
                if (fis != null)
                    fis.close();

                if (fos != null)
                    fos.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }



    }

    private static  void keepGoing(File sourceFile,File targetFile,int position){
        try {
            //设置延迟只是为了方便查看文件是否部分传输了
            Thread.sleep(60000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        try{
            RandomAccessFile readFile = new RandomAccessFile(sourceFile,"rw");
            RandomAccessFile writeFile = new RandomAccessFile(targetFile, "rw");
            readFile.seek(position);
            writeFile.seek(position);
            // 数据缓冲区
            byte[] buf = new byte[1];
            // 数据读写
            while (readFile.read(buf) != -1) {
                writeFile.write(buf);
            }
        }catch (FileNotFoundException e){
            e.printStackTrace();
        }catch (IOException e) {
            e.printStackTrace();
        }

    }
}
class FileAccessException extends Exception {

}

猜你喜欢

转载自www.cnblogs.com/strugglecola/p/11326634.html