java实现下载断点续传_java实现文件断点续传下载功能

本文实例为大家分享了java断点续传下载的代码,供大家参考,具体内容如下

1. Java代码

//实现文件下载功能

public String downloadFile(){

File dir = new File(filepath);//获取文件路劲

if(!dir.exists()) {

System.out.println("文件路径错误");

log.debug("文件路径错误");

return "failed";// 判断文件或文件夹是否存在

}

File downloadFile = new File(dir, filename);//在指定目录下查找文件

if(!downloadFile.isFile()){

System.out.println("文件不存在");

log.debug("文件不存在");

return "failed";// 判断文件或文件夹是否存在

}

try {

downloadFileRanges(downloadFile);

} catch(ClientAbortException e){

System.out.println("连接被终止");

log.debug("连接被终止");

} catch (IOException e) {

e.printStackTrace();

}

return null;

}

private voi

你可能感兴趣的:(java实现下载断点续传)