亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot+微信小程序如何實現文件上傳與下載功能

發布時間:2022-03-21 13:34:06 來源:億速云 閱讀:253 作者:小新 欄目:開發技術

這篇文章主要介紹SpringBoot+微信小程序如何實現文件上傳與下載功能,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

1、文件上傳

1.1 后端部分

1.1.1 引入Apache Commons FIleUpload組件依賴

<!--文件上傳與下載相關的依賴-->
<dependency>
    <groupId>commons-fileupload</groupId>
    <artifactId>commons-fileupload</artifactId>
    <version>1.3.3</version>
</dependency>
<dependency>
    <groupId>commons-io</groupId>
    <artifactId>commons-io</artifactId>
    <version>2.2</version>
</dependency>

1.1.2 設置上傳文件大小限制

在application.yml(根據個人情況,有的人可能用的properties)配置文件中添加如下參數:

SpringBoot+微信小程序如何實現文件上傳與下載功能

1.1.3 創建控制器

后端部分很簡單,就是實現文件上傳而已,這個學過SpringMVC就行。

@ApiOperation("文件上傳")
    @PostMapping("/upload")
    public String upload(HttpServletRequest request, @RequestParam("file") MultipartFile file) throws IOException {
        if(!file.isEmpty()){
            //上傳文件路徑
//            String path = request.getServletContext().getRealPath("/uploadFiles/");
            String path="E:/upload";
            //獲得上傳文件名
            String fileName = file.getOriginalFilename();
            File filePath = new File(path + File.separator + fileName);
            System.out.println(filePath);
            //如果文件目錄不存在,創建目錄
            if(!filePath.getParentFile().exists()){
                filePath.getParentFile().mkdirs();
            }
            //將上傳文件保存到一個目標文件中
            file.transferTo(filePath);
            return "success";
        }
        return "fail";
    }

這里為了方便,我直接使用了絕對路徑,生產環境中是不允許的。

1.2 小程序前端部分

wx.uploadFile(OBJECT)接口將本地資源上傳到開發者的服務器上,客戶端發起一個HTTPS的Post請求,其中content-type為multipart/form-data。在上傳之前需要先獲取本地(手機)上的資源,即使用wx.uploadFile(OBJECT)之前應該先調用其他的接口來獲取待上傳的文件資源,例如先調用wx.chooseImage()接口來獲取到本地圖片資源的臨時文件路徑,再通過wx.uploadFile(OBJECT)接口將本地資源上傳到指定服務器。wx.uploadFile()接口屬性如下表所示。

SpringBoot+微信小程序如何實現文件上傳與下載功能

官網示例代碼:

wx.chooseImage({
  success (res) {
    const tempFilePaths = res.tempFilePaths
    wx.uploadFile({
      url: 'https://example.weixin.qq.com/upload', //僅為示例,非真實的接口地址
      filePath: tempFilePaths[0],
      name: 'file',
      formData: {
        'user': 'test'
      },
      success (res){
        const data = res.data
        //do something
      }
    })
  }
})

真實的前端代碼如下:

pages/uploadFile/uploadFile.wxml

<!--index.wxml-->
<view class="container">
 <button bindtap='upfile'>選擇上傳文件</button>
</view>

pages/uploadFile/uploadFile.js

//index.js
//獲取應用實例
var app = getApp()
Page({
  data: {
  },
  //事件處理函數
  upfile: function() {
    console.log("--bindViewTap--")

     wx.chooseImage({
       success: function(res) {
       var tempFilePaths = res.tempFilePaths
         wx.uploadFile({
           url: 'http://127.0.0.1:8001/file/upload',
           header: { "Content-Type": "multipart/form-data" },
           filePath: tempFilePaths[0],
           name: 'file',
           formData:{
            
           },
           success(res){
             console.log(res.data);
           }
         })
      }
     })

  },
  onLoad: function () {
  }
})

1.3 實現效果

編譯之后:

SpringBoot+微信小程序如何實現文件上傳與下載功能

點擊上傳文件,隨便選擇一張圖片

SpringBoot+微信小程序如何實現文件上傳與下載功能

SpringBoot+微信小程序如何實現文件上傳與下載功能

SpringBoot+微信小程序如何實現文件上傳與下載功能

可以看到,前端和后端項目的控制臺都有對應的輸出。

然后去對應的路徑下面查找我們剛剛上傳的文件

SpringBoot+微信小程序如何實現文件上傳與下載功能

2、文件下載

2.1 后端部分

這里依賴和設置上傳文件大小和上傳部分一致,不重復了。

2.1.1 控制器

 @ApiOperation("文件下載")
    @GetMapping("download")
    public ResponseEntity<byte[]> download(HttpServletRequest request,@RequestParam("file") String fileName) throws IOException {
        //下載文件路徑
        String path="E:/upload";
        //構建將要下載的文件對象
        File file = new File(path + File.separator + fileName);
        //設置響應頭
        HttpHeaders headers=new HttpHeaders();
        //下載顯示的文件名,解決中文名稱亂碼問題
        String downloadFileName=new String(fileName.getBytes("UTF-8"),"ISO-8859-1");
        //通知瀏覽器以下載方式(attachment)打開文件
        headers.setContentDispositionFormData("attachment",downloadFileName);
        //定義以二進制流數據(最常見的文件下載)的形式下載返回文件數據
        headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
        //使用spring mvc框架的ResponseEntity對象封裝返回下載數據
        return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),headers, HttpStatus.OK);
    }

2.2 小程序前端部分

wx.downloadFile(Object object)下載文件資源到本地(手機).客戶端直接發起一個HTTPS GET請求,返回文件的本地臨時路徑。因為是臨時路徑,也就意味著用戶不會直到真實的文件目錄,所以下載到臨時路徑之后應該馬上做后續的工作,例如把臨時圖片設置為頭像,或者把臨時文件通過別的接口真是保存到手機指定目錄下。wx.downloadFile(Object object)參數如表所示。

SpringBoot+微信小程序如何實現文件上傳與下載功能

官網示例代碼:

SpringBoot+微信小程序如何實現文件上傳與下載功能

下載的前端代碼如下:

這里實現兩個功能,一個實現把下載到的圖片設置為頭像,另一個將圖片保存到手機本地。

pages/downloadFile/downloadFile.wxml

<!--index.wxml-->
<view class="container">
  <view  bindtap="dian" class="userinfo">
    <image class="userinfo-avatar" src="{{avatar}}" background-size="cover"></image>
    <text class="userinfo-nickname">{{userInfo.nickName}}</text>
  </view>
  <view class="usermotto">
  <image src='http://127.0.0.1:8001/file/download?file=ymwtyNjpeZq645b1d185a17eaa9a65398443fbc4f8dd.jpg' class="tu"></image>
    <view bindtap='dian2'>下載上圖</view>
  </view>
</view>

pages/downloadFile/downloadFile.js

//index.js
//獲取應用實例
var app = getApp()
Page({
 
  data: {
    motto: 'Hello World',
    userInfo: {},

    avatar:null
  },
  //事件處理函數
  dian: function() {
    console.log("--bindViewTap--")
    var that = this;
    wx.downloadFile({
      // url: 'https://ss3.bdstatic.com/70cFv8Sh_Q1YnxGkpoWK1HF6hhy/it/u=3018968254,2801372361&fm=26&gp=0.jpg',
      url:'http://127.0.0.1:8001/file/download?file=ymwtyNjpeZq645b1d185a17eaa9a65398443fbc4f8dd.jpg',
       type: 'image',
        success: function(res) {
          console.log(res)
         that.setData({avatar:res.tempFilePath})
          
        }
      })
  },
  onLoad: function () {
    console.log('onLoad')
    var that = this
    //調用應用實例的方法獲取全局數據
    app.getUserInfo(function(userInfo){
      //更新數據
      that.setData({
        userInfo:userInfo
      })
    })
  },
  dian2: function () {
    wx.downloadFile({
      url:'http://127.0.0.1:8001/file/download?file=ymwtyNjpeZq645b1d185a17eaa9a65398443fbc4f8dd.jpg',
      success: function (res) {
        console.log(res);
        var rr = res.tempFilePath;
        wx.saveImageToPhotosAlbum({
          filePath: rr,
          success(res) {
            wx.showToast({
              title: '保存成功',
              icon: 'success',
              duration: 2000
            })
          }
        })
      }
    })
  }

})

在函數dian()中調用了wx.downloadFile()接口,下載成功,圖片就會保存在res.tempFilePath中,再把res.tempFilePath設置為頭像。在函數dian2中,通過wx.saveImageToPhotosAlbum()接口把下載成功的圖片保存到系統相冊。

2.3 實現效果

SpringBoot+微信小程序如何實現文件上傳與下載功能

這個圖片是直接從服務器上下載的,可以點擊下載將這個圖片保存到本地

SpringBoot+微信小程序如何實現文件上傳與下載功能

到這里,文件上傳和下載就基本做完了。其實大多數都是后端的事情,接口寫好就沒啥大問題。不放心的可以先用swagger測試。

以上是“SpringBoot+微信小程序如何實現文件上傳與下載功能”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

思南县| 潮州市| 依兰县| 铜山县| 济源市| 清水河县| 布尔津县| 建湖县| 望谟县| 保山市| 阿城市| 龙口市| 延安市| 瓮安县| 八宿县| 崇文区| 民和| 宿松县| 随州市| 沁阳市| 封丘县| 福建省| 泰安市| 集贤县| 莎车县| 长寿区| 新安县| 沙田区| 上犹县| 达尔| 崇州市| 额济纳旗| 贵州省| 富裕县| 耒阳市| 西宁市| 东乌珠穆沁旗| 新闻| 鹤岗市| 蓝山县| 白河县|