日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

前端使用 vue-simple-upload

后端使用 springboot

前端

安裝 npm install vue-simple-uploader --save

<template>
    <div class="hello">
        <h3>Installed CLI Plugins</h3>
        <uploader :options="options" class="uploader-example" @file-added="onFileAdded" @file-success="onFileSuccess" @file-error="onFileError">
            <uploader-unsupport></uploader-unsupport>
            <uploader-drop>
                <!-- <p>Drop files here to upload or</p> -->
                <uploader-btn>select files</uploader-btn>
                <!-- <uploader-btn :attrs="attrs">select images</uploader-btn> -->
                <!-- <uploader-btn :directory="true">select folder</uploader-btn> -->
            </uploader-drop>
            <uploader-list></uploader-list>
        </uploader>

    </div>
</template>

<script>
export default {
    name: "HelloWorld",
    props: {
        msg: String,
    },
    data() {
        return {
            options: {
                target: "http://localhost:11001/upload/bigfile",
                testChunks: false,
                //上傳文件時候,文件的參數名,默認為 file
                fileParameterName: "file",
                //其他參數,可以是一個對象的形式
                query: {},
                //上傳方式,默認為 multipart
                method: "multipart",
                //http方法,默認為post
                uploadMethod: "post",
                //分片大小 單位 bytes ,下面 2M  1024bytes = 1KB, 1024 * 1024 bytes = 1MB
                chunkSize: 1 * 1024 * 1024 * 2,
            },
            attrs: {
                accept: "image/*",
            },
        };
    },
    methods: {
        onFileAdded() {
            console.log("onFileAdded");
            let s = 111;
            s.toFixed();
        },
        onFileSuccess() {
            console.log("onFileSuccess");
        },
        onFileError() {
            console.log("onFileError");
        },
    },
};
</script>
<style scoped lang="scss">
h3 {
    margin: 40px 0 0;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    display: inline-block;
    margin: 0 10px;
}
a {
    color: #42b983;
}
</style>

后端

package com.tiger.springbootmongodb.controller;
import com.tiger.springbootmongodb.pojo.Chunk;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;
import org.springframework.web.multipart.MultipartResolver;
import JAVAx.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.RandomaccessFile;
import java.util.Iterator;
@RestController
@RequestMApping("upload")
public class BigFileUploadController {
    @Autowired
    MultipartResolver multipartResolver;

    @PostMapping("bigfile")
    public String bigFileUpload(@RequestParam(value = "file", required = false) MultipartFile multipartFile, @ModelAttribute Chunk chunk, HttpServletRequest request, HttpServletResponse response) throws IOException {
        System.out.println("第 " + chunk.getChunkNumber() + " 片文件,文件大小:" + chunk.getCurrentChunkSize());
        File file= new File("D:\1-program\" + chunk.getFilename());
        if(chunk.getChunkNumber() == 1 && !file.exists()){
            file.createNewFile();
        }
        try(
                //將塊文件寫入文件中
                InputStream fos=chunk.getFile().getInputStream();
                RandomAccessFile raf =new RandomAccessFile(file,"rw")
        ){
            int len=-1;
            byte[] buffer=new byte[1024];
            raf.seek((chunk.getChunkNumber()-1)*1024*1024*2);
            while((len=fos.read(buffer))!=-1){
                raf.write(buffer,0,len);
            }
        }catch (Exception e){
            e.printStackTrace();
        }
        if(chunk.getChunkNumber().equals(chunk.getTotalChunks())){
            response.setStatus(200);
            // TODO 向數據庫中保存上傳信息
            return "over";
        }else {
            response.setStatus(201);
            return "ok";
        }
    }
}

分享到:
標簽:springboot
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定