uniapp下载&打开实现方案,支持安卓ios和h5,下载文件到指定目录,安卓文件管理内可查看到

uniapp下载&打开实现方案,支持安卓ios和h5

Android:

1、申请本地存储读写权限

2、创建文件夹(文件夹不存在即创建)

3、下载文件

ios:

1、下载文件

2、保存到本地,需要打开文件点击储存

使用方法:

js 复制代码
downloadFile(fileUrl, fileName)

file.js

js 复制代码
let downloadFilePath = '/storage/emulated/0/yulong-ys-files'
// 创建文件夹
export const createDir = () => {
  return new Promise((resolve, reject) => {
    // 申请本地存储读写权限
    plus.android.requestPermissions([
      'android.permission.WRITE_EXTERNAL_STORAGE',
      'android.permission.READ_EXTERNAL_STORAGE',
      'android.permission.INTERNET',
      'android.permission.ACCESS_WIFI_STATE'
    ], success => {
      const File = plus.android.importClass('java.io.File')
      let file = new File(downloadFilePath)
      // 文件夹不存在即创建
      if (!file.exists()) {
        file.mkdirs()
        resolve()
      }
      resolve()
    }, error => {
      Tips.toast('无法获取权限,文件下载将出错')
      reject(error)
    })
  })

}

// 下载文件操作
async function doDownloadFile(url, fileName, options, osName) {
  if (osName === 'Android') {
    await createDir()
  }
  Tips.loading('正在下载...')
  let dTask = plus.downloader.createDownload(url, options, async (d, status) => {
    Tips.hideLoading()
    if (status == 200) {
      plus.io.convertLocalFileSystemURL(d.filename)
      await Tips.confirm('文件已保存,是否打开?')
      uni.openDocument({
        filePath: d.filename,
        success: () => {
          console.log('成功打开')
        }
      })
    } else {
      console.log('下载失败')
      console.log(d)
      Tips.toast('下载失败')
      Tips.hideLoading()
      plus.downloader.clear()
    }
  })
  dTask.start()
}

// 下载文件
export function downloadFile(url, fileName) {
  if (!url) {
    Tips.toast('下载地址不能为空')
    return Promise.reject('下载地址不能为空')
  }
  // #ifdef H5
  window.location.href = url
  // #endif
  // #ifdef APP-PLUS
  let osName = plus.os.name;
  if (osName === 'Android') {
    doDownloadFile(url, fileName, {filename: 'file://' + downloadFilePath + '/' + fileName}, osName)
  } else {
    doDownloadFile(url, fileName, {}, osName)
  }
  // #endif
}

Tips.js

js 复制代码
/**
 * 提示与加载工具类
 */
export default class Tips {
  constructor() {
    this.isLoading = false;
  }
  /**
   * 弹出提示框
   */

  static success(title, duration = 1000) {
    setTimeout(() => {
      uni.showToast({
        title: title,
        icon: "success",
        mask: true,
        duration: duration
      });
    }, 300);
    if (duration > 0) {
      return new Promise((resolve, reject) => {
        setTimeout(() => {
          resolve();
        }, duration);
      });
    }
  }

  /**
   * 弹出确认窗口
   */
  static confirm(content, ops = {}, payload = {}) {
    return new Promise((resolve, reject) => {
      uni.$showModal({
        content: content,
        ...ops,
        success: res => {
          if (res.confirm) {
            resolve(payload);
          } else if (res.cancel) {
            reject(payload);
          }
        },
        fail: res => {
          reject(payload);
        }
      });
    });
  }

  static toast(title, onHide = undefined, icon = "none") {
    setTimeout(() => {
      uni.showToast({
        title: title,
        icon: icon,
        mask: true,
        duration:1500
      });
    }, 0);

    // 隐藏结束回调
    if (onHide) {
      setTimeout(() => {
        onHide();
      }, 1500);
    }
  }

  /**
   * 错误框
   */

  static error(title, onHide) {
    uni.showToast({
      title: title,
	  icon: 'error',
      mask: true,
      duration: 1500
    });
    // 隐藏结束回调
    if (onHide) {
      setTimeout(() => {
        onHide();
      }, 1500);
    }
  }

  /**
   * 弹出加载提示
   */
  static loading(title = "加载中") {
    if (Tips.isLoading) {
      return;
    }
    Tips.isLoading = true;
    uni.showLoading({
      title: title,
      mask: true
    });
  }

  /**
   * 加载完毕
   */
  static hideLoading() {
    if (Tips.isLoading) {
      Tips.isLoading = false;
      uni.hideLoading();
    }
  }
}

/**
 * 静态变量,是否加载中
 */
Tips.isLoading = false;

参考博客,在次基础上做了修改

相关推荐
信徒_几秒前
Mysql 在什么样的情况下会产生死锁?
android·数据库·mysql
大胡子的机器人36 分钟前
安卓中app_process运行报错Aborted,怎么查看具体的报错日志
android
goto_w43 分钟前
uniapp上使用webview与浏览器交互,支持三端(android、iOS、harmonyos next)
android·vue.js·ios·uni-app·harmonyos
小宝小白1 小时前
【vue3】黑马小兔鲜儿项目uniapp navigationStyle
uni-app
QING6182 小时前
Kotlin Random.Default用法及代码示例
android·kotlin·源码阅读
QING6182 小时前
Kotlin Byte.inc用法及代码示例
android·kotlin·源码阅读
QING6182 小时前
Kotlin contentEquals用法及代码示例
android·kotlin·源码阅读
每次的天空10 小时前
Android学习总结之算法篇四(字符串)
android·学习·算法
x-cmd11 小时前
[250331] Paozhu 发布 1.9.0:C++ Web 框架,比肩脚本语言 | DeaDBeeF 播放器发布 1.10.0
android·linux·开发语言·c++·web·音乐播放器·脚本语言
Json____12 小时前
uni-app 框架 调用蓝牙,获取 iBeacon 定位信标的数据,实现室内定位场景
uni-app·电脑·蓝牙·蓝牙信标 beacon·定位信标·停车场定位