uniapp APP读取bin文件(仅测试安卓可用)

1.解析bin文件内容

javascript 复制代码
    getData(path) {
      return new Promise(
        (resolve) => {
          uni.downloadFile({
            url: path, // .bin 文件 URL
            success: (res) => {
              if (res.statusCode === 200) {
                //文件读写是一个异步请求 用promise包起来方便使用时的async+await
                plus.io.resolveLocalFileSystemURL(
                  res.tempFilePath, //请求文件系统
                  (fileEntry) => {
                    fileEntry.file(function (file) {
                      let fileReader = new plus.io.FileReader(); //new一个可以用来读取文件的对象fileReader
                      fileReader.readAsDataURL(file); //读文件的格式
                      fileReader.onerror = (e) => {
                        //读文件失败
                        console.log("获取文件失败", fileReader.error);
                        return;
                      };
                      fileReader.onload = (e) => {
                        //读文件成功
                        var u8arr = (function (path, name) {
                          var arr = path.split(","),
                            mime = arr[0].match(/:(.*?);/)[1],
                            bstr = atob(arr[1]),
                            n = bstr.length,
                            u8arr = new Uint8Array(n);
                          while (n--) {
                            u8arr[n] = bstr.charCodeAt(n);
                          }
                          resolve(u8arr);
                        })(e.target.result, fileEntry.name);
                      };
                    });
                  },
                  (error) => {
                    console.log("新建获取文件失败", error);
                    return;
                  }
                );
              }
            },
            fail: (err) => {
              console.log("下载失败:", err);
            },
          });
        },
        (failure) => {
          console.log("请求文件系统失败", failure.message);
          return;
        }
      );
    },

2.使用

javascript 复制代码
 let pathUrl = '你的在线.bin文件地址'
 this.getData(pathUrl).then((res) => {
    // arrayBuffer 文件
    console.log(res);
    // 转16进制
    let hex = this.arraybufferTo2Hex(res);
    console.log(hex);
 });



 // 转16进制
 arraybufferTo2Hex(buffer) {
   return Array.prototype.map
      .call(new Uint8Array(buffer), (x) => ("00" + x.toString(16)).slice(-2))
      .join(" ");
 },
相关推荐
SRC_BLUE_171 小时前
SQLI LABS | Less-39 GET-Stacked Query Injection-Intiger Based
android·网络安全·adb·less
Martin -Tang2 小时前
Vue 3 中,ref 和 reactive的区别
前端·javascript·vue.js
FakeOccupational3 小时前
nodejs 020: React语法规则 props和state
前端·javascript·react.js
放逐者-保持本心,方可放逐3 小时前
react 组件应用
开发语言·前端·javascript·react.js·前端框架
曹天骄4 小时前
next中服务端组件共享接口数据
前端·javascript·react.js
无尽的大道4 小时前
Android打包流程图
android
@Carey5 小时前
uniapp配置消息推送unipush 厂商推送设置配置 FCM 教程
uni-app
转角羊儿5 小时前
uni-app上拉加载更多⑩
uni-app
镭封6 小时前
android studio 配置过程
android·ide·android studio
夜雨星辰4876 小时前
Android Studio 学习——整体框架和概念
android·学习·android studio