用Java编写的http下载工具类,包含下载进度回调
HttpDownloader.java
- package com.buyishi;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.io.InputStream;
- import java.net.URL;
- import java.net.URLConnection;
- public class HttpDownloader {
- private final String url, destFilename;
- public HttpDownloader(String url, String destFilename) {
- this.url = url;
- this.destFilename = destFilename;
- }
- public void download(Callback callback) {
- try (FileOutputStream fos = new FileOutputStream(destFilename)) {
- URLConnection connection = new URL(url).openConnection();
- long fileSize = connection.getContentLengthLong();
- InputStream inputStream = connection.getInputStream();
- byte[] buffer = new byte[10 * 1024 * 1024];
- int numberOfBytesRead;
- long totalNumberOfBytesRead = 0;
- while ((numberOfBytesRead = inputStream.read(buffer)) != - 1) {
- fos.write(buffer, 0, numberOfBytesRead);
- totalNumberOfBytesRead += numberOfBytesRead;
- callback.onProgress(totalNumberOfBytesRead * 100 / fileSize);
- }
- callback.onFinish();
- } catch (IOException ex) {
- callback.onError(ex);
- }
- }
- public interface Callback {
- void onProgress(long progress);
- void onFinish();
- void onError(IOException ex);
- }
- }
OkHttpDownloader.java //基于OkHttp
- package com.buyishi;
- import java.io.BufferedInputStream;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import okhttp3.OkHttpClient;
- import okhttp3.Request;
- import okhttp3.ResponseBody;
- public class OkHttpDownloader {
- private final String url, destFilename;
- private static final Logger LOGGER = Logger.getLogger(OkHttpDownloader.class.getName());
- public OkHttpDownloader(String url, String destFilename) {
- this.url = url;
- this.destFilename = destFilename;
- }
- public void download(Callback callback) {
- BufferedInputStream input = null;
- try (FileOutputStream fos = new FileOutputStream(destFilename)) {
- Request request = new Request.Builder().url(url).build();
- ResponseBody responseBody = new OkHttpClient().newCall(request).execute().body();
- long fileSize = responseBody.contentLength();
- input = new BufferedInputStream(responseBody.byteStream());
- byte[] buffer = new byte[10 * 1024 * 1024];
- int numberOfBytesRead;
- long totalNumberOfBytesRead = 0;
- while ((numberOfBytesRead = input.read(buffer)) != - 1) {
- fos.write(buffer, 0, numberOfBytesRead);
- totalNumberOfBytesRead += numberOfBytesRead;
- callback.onProgress(totalNumberOfBytesRead * 100 / fileSize);
- }
- callback.onFinish();
- } catch (IOException ex) {
- callback.onError(ex);
- } finally {
- if (input != null) {
- try {
- input.close();
- } catch (IOException ex) {
- LOGGER.log(Level.SEVERE, null, ex);
- }
- }
- }
- }
- public interface Callback {
- void onProgress(long progress);
- void onFinish();
- void onError(IOException ex);
- }
- }
MainFrame.java //对两个工具类的测试
- package com.buyishi;
- import java.awt.GridLayout;
- import java.awt.event.MouseAdapter;
- import java.awt.event.MouseEvent;
- import java.io.IOException;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import javax.swing.JButton;
- import javax.swing.JFrame;
- public class MainFrame extends JFrame {
- private final JButton test1Button, test2Button;
- private static final Logger LOGGER = Logger.getLogger(MainFrame.class.getName());
- private MainFrame() {
- super("Download Test");
- super.setSize(300, 200);
- super.setLocationRelativeTo(null);
- super.setDefaultCloseOperation(EXIT_ON_CLOSE);
- super.setLayout(new GridLayout(2, 1));
- test1Button = new JButton("测试1");
- test2Button = new JButton("测试2");
- super.add(test1Button);
- super.add(test2Button);
- test1Button.addMouseListener(new MouseAdapter() {
- private boolean downloadStarted;
- @Override
- public void mouseClicked(MouseEvent e) {
- if (!downloadStarted) {
- downloadStarted = true;
- new Thread() {
- @Override
- public void run() {
- String url = "http://download.microsoft.com/download/A/C/9/AC924EA1-9F39-4DFD-99DF-2C1DEB922174/EIE11/WOL/EIE11_ZH-CN_WOL_WIN764.EXE";
- // String url = "https://dl.360safe.com/drvmgr/360DrvMgrInstaller_net.exe";
- new HttpDownloader(url, "C:/Users/BuYishi/Desktop/file1").download(new HttpDownloader.Callback() {
- @Override
- public void onProgress(long progress) {
- LOGGER.log(Level.INFO, "{0}", progress);
- test1Button.setText("Downloading..." + progress + "%");
- }
- @Override
- public void onFinish() {
- LOGGER.log(Level.INFO, "Download finished");
- test1Button.setText("Downloaded");
- }
- @Override
- public void onError(IOException ex) {
- LOGGER.log(Level.SEVERE, null, ex);
- downloadStarted = false;
- }
- });
- }
- }.start();
- }
- }
- });
- test2Button.addMouseListener(new MouseAdapter() {
- private boolean downloadStarted;
- @Override
- public void mouseClicked(MouseEvent e) {
- if (!downloadStarted) {
- downloadStarted = true;
- new Thread() {
- @Override
- public void run() {
- String url = "http://download.microsoft.com/download/A/C/9/AC924EA1-9F39-4DFD-99DF-2C1DEB922174/EIE11/WOL/EIE11_ZH-CN_WOL_WIN764.EXE";
- // String url = "https://dl.360safe.com/drvmgr/360DrvMgrInstaller_net.exe";
- new OkHttpDownloader(url, "C:/Users/BuYishi/Desktop/file2").download(new OkHttpDownloader.Callback() {
- @Override
- public void onProgress(long progress) {
- test2Button.setText("Downloading..." + progress + "%");
- }
- @Override
- public void onFinish() {
- test2Button.setText("Downloaded");
- }
- @Override
- public void onError(IOException ex) {
- LOGGER.log(Level.SEVERE, null, ex);
- downloadStarted = false;
- }
- });
- }
- }.start();
- }
- }
- });
- }
- public static void main(String[] args) {
- MainFrame frame = new MainFrame();
- frame.setVisible(true);
- }
- }
用Java编写的http下载工具类,包含下载进度回调的更多相关文章
- ftp上传下载工具类
package com.taotao.utils; import java.io.File; import java.io.FileInputStream; import java.io.FileNo ...
- 【转】Java压缩和解压文件工具类ZipUtil
特别提示:本人博客部分有参考网络其他博客,但均是本人亲手编写过并验证通过.如发现博客有错误,请及时提出以免误导其他人,谢谢!欢迎转载,但记得标明文章出处:http://www.cnblogs.com/ ...
- Java操作文件夹的工具类
Java操作文件夹的工具类 import java.io.File; public class DeleteDirectory { /** * 删除单个文件 * @param fileName 要删除 ...
- Java汉字转成汉语拼音工具类
Java汉字转成汉语拼音工具类,需要用到pinyin4j.jar包. import net.sourceforge.pinyin4j.PinyinHelper; import net.sourcefo ...
- java中excel导入\导出工具类
1.导入工具 package com.linrain.jcs.test; import jxl.Cell; import jxl.Sheet; import jxl.Workbook; import ...
- java中定义一个CloneUtil 工具类
其实所有的java对象都可以具备克隆能力,只是因为在基础类Object中被设定成了一个保留方法(protected),要想真正拥有克隆的能力, 就需要实现Cloneable接口,重写clone方法.通 ...
- java代码行数统计工具类
package com.syl.demo.test; import java.io.*; /** * java代码行数统计工具类 * Created by 孙义朗 on 2017/11/17 0017 ...
- Java加载Properties配置文件工具类
Java加载Properties配置文件工具类 import org.apache.commons.lang3.StringUtils; import org.apache.log4j.Logger; ...
- Java 操作Redis封装RedisTemplate工具类
package com.example.redisdistlock.util; import org.springframework.beans.factory.annotation.Autowire ...
- java后台表单验证工具类
/** * 描述 java后台表单验证工具类 * * @ClassName ValidationUtil * @Author wzf * @DATE 2018/10/27 15:21 * @VerSi ...
随机推荐
- nginx中access_log和nginx.conf中的log_format用法
nginx服务器日志相关指令主要有两条: 一条是log_format,用来设置日志格式; 另外一条是access_log,用来指定日志文件的存放路径.格式和缓存大小 可以参加ngx_http_log_ ...
- 【Luogu】P2059卡牌游戏(概率DP)
题目链接 这绝壁是道紫难度的题 请移步xyz32678的题解. 设f[i][j]是有i个人参加了游戏,1是庄家,最后j胜出的概率. 我们可以发现,这个游戏影响胜出的概率的只有庄家的相对位置和人数,跟玩 ...
- BZOJ 2286 [Sdoi2011]消耗战 ——虚树
虚树第一题. 大概就是建一颗只与询问有关的更小的新树,然后在虚树上DP #include <map> #include <ctime> #include <cmath&g ...
- 算法总结——主席树(poj2104)
题目: Description You are working for Macrohard company in data structures department. After failing y ...
- getParameter 与 getAttribute的区别
request.getAttribute():是request时设置的变量的值,用request.setAttribute("name","您自己的值");来设 ...
- STL中heap用法
#include<cstdio> #include<iostream> #include<algorithm> using namespace std; ]={,, ...
- Python入门--8--现在需要先学习可视化--包:easygui
一.安装.了解easygui 下载地址:http://bbs.fishc.com/forum.php?mod=viewthread&tid=46069&extra=page%3D1%2 ...
- laravel 的模型
建立model文件,再项目的app目录下建立Member.php namespace App; use Illuminate\Database\Eloquent\Model; class Member ...
- SPOJ 1479 +SPOJ 666 无向树最小点覆盖 ,第二题要方案数,树形dp
题意:求一颗无向树的最小点覆盖. 本来一看是最小点覆盖,直接一下敲了二分图求最小割,TLE. 树形DP,叫的这么玄乎,本来是线性DP是线上往前\后推,而树形DP就是在树上,由叶子结点状态向根状态推. ...
- LeetCode OJ--Remove Duplicates from Sorted List II *
http://oj.leetcode.com/problems/remove-duplicates-from-sorted-list-ii/ 处理链表的范例 #include <iostream ...