Android 使用Okhttp进行文件下载

开发中很多地方会用到下载功能,图片下载,视频下载,安装包下载等等

本文使用Okhttp进行下载,使用单例模式,设置有回调监听,可参考使用

引用

  implementation 'com.squareup.okhttp3:okhttp:3.12.0'

DownloadUtil.java  参数saveDir为需要保存的文件夹名称

public class DownloadUtil {
    private static DownloadUtil instance;
    private OkHttpClient okHttpClient;
    private final static byte[] gSyncCode = new byte[0];

    public static DownloadUtil get(){
        if(instance == null){
            synchronized (DownloadUtil.class){
                if(instance == null){
                    instance = new DownloadUtil();
                }
            }
        }
        return instance;
    }
    private DownloadUtil(){
        okHttpClient = new OkHttpClient();
    }

    public void download(final String url, final String saveDir, final DownloadListener downloadListener){
        Request request = new Request.Builder().url(url).build();
        okHttpClient.newCall(request).enqueue(new Callback() {
            @Override
            public void onFailure(Call call, IOException e) {
                downloadListener.onDownloadFailed();
            }

            @Override
            public void onResponse(Call call, Response response) throws IOException {
                InputStream is = null;
                byte[] buf = new byte[2048];
                int len = 0;
                FileOutputStream fos = null;
                // 储存下载文件的目录
                String saveFolder = isExistDir(saveDir);
                String tempPath = saveFolder + File.separator + "temp_" + getNameFromUrl(url);
                String savePath = saveFolder + File.separator + getNameFromUrl(url);
                try {
                    FileUtils.deleteFile(tempPath);
                    is = response.body().byteStream();
                    long total = response.body().contentLength();
                    File file = new File(tempPath);
                    fos = new FileOutputStream(file);
                    long sum = 0;
                    while ((len = is.read(buf)) != -1) {
                        fos.write(buf, 0, len);
                        sum += len;
                        int progress = (int) (sum * 1.0f / total * 100);
                        // 下载中
                        downloadListener.onDownloading(progress);
                    }
                    fos.flush();
                    // 下载完成
                    FileUtils.fileRename(tempPath, savePath);
                    downloadListener.onDownloadSuccess(savePath);
                } catch (Exception e) {
                    downloadListener.onDownloadFailed();
                } finally {
                    try {
                        if (is != null)
                            is.close();
                    } catch (IOException e) {
                    }
                    try {
                        if (fos != null)
                            fos.close();
                    } catch (IOException e) {
                    }
                }
            }
        });
    }

    private String isExistDir(String saveDir) throws IOException {
        // 下载位置
        File downloadFile = new File(Environment.getExternalStorageDirectory(), saveDir);
        if (!downloadFile.mkdirs()) {
            downloadFile.createNewFile();
        }
        String savePath = downloadFile.getAbsolutePath();
        return savePath;
    }

    @NonNull
    public static String getNameFromUrl(String url) {
        return url.substring(url.lastIndexOf("/") + 1);
    }
    /**
     * delete file or directory
     * 
    *
  • if path is null or empty, return true
  • *
  • if path not exist, return true
  • *
  • if path exist, delete recursion. return true
  • *
      * * @param path * @return */ public static boolean deleteFile(String path) { synchronized (gSyncCode) { if (TextUtils.isEmpty(path)) { return true; } File file = new File(path); if (!file.exists()) { return true; } if (file.isFile()) { return file.delete(); } if (!file.isDirectory()) { return false; } File[] filesList = file.listFiles(); if (filesList != null) { for (File f : filesList) { if (f.isFile()) { f.delete(); } else if (f.isDirectory()) { deleteFile(f.getAbsolutePath()); } } } return file.delete(); } } /** * @Method: fileRename * @Description: 将文件从fromName命名为toName,由于使用的是File自带的renameTo()接口,需要注意:
    • 读写存储器权限
    • * fromName和toName这两个路径在相同的挂载点。如果不在同一挂载点,重命名失败。
    • * @param fromName 需要重命名的文件,为文件绝对路径 * @param toName 要改成的名字,为文件绝对路径 * @return boolean 成功或失败 */ public static boolean fileRename(String fromName, String toName) { synchronized (gSyncCode) { // TODO: 根据文件名判断是否属于同一挂载点 File fromFile = new File(fromName); File toFile = new File(toName); if (!fromFile.exists()) { return false; } boolean result = fromFile.renameTo(toFile); if (result) { } return result; } } public interface DownloadListener { /** * 下载成功 */ void onDownloadSuccess(String path); /** * @param progress * 下载进度 */ void onDownloading(int progress); /** * 下载失败 */ void onDownloadFailed(); } }

onDownloadSuccess 返回下载文件的地址

onDownloading progress为格式化后的进度

 

你可能感兴趣的:(android,android常见问题,android)