java + formdata 上传多个文件(spring)

在java中formdata采用的是Map《String,MultipartFile》的形式存在,后台接收代码如下

@ResponseBody
    @RequestMapping(value = "/makeVideoByMoban1", method = RequestMethod.POST)
    public String uploadFile(HttpServletRequest request) throws IOException {
        Map<String, MultipartFile> fileMap = ((MultipartHttpServletRequest) request).getFileMap();
        for(MultipartFile v:fileMap.values()){
            System.out.println(v.getName());
            System.out.println(v.getOriginalFilename());
            System.out.println("value="+v);
            //拷贝文件到输出文件对象
        }
        return "a";
    }

jsp代码如下 

<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta charset="UTF-8">
    <title>showImages</title>
    <style type="text/css">
        .float {
            float: left;
            width: 200px;
            height: 200px;
            /*overflow: hidden;*/
            border: 1px solid #CCCCCC;
            border-radius: 10px;
            padding: 5px;
            margin: 5px;
        }

        img {
            position: relative;
        }

        .result {
            width: 200px;
            height: 200px;
            box-sizing: border-box;
        }

    </style>


    <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
    <script type="text/javascript">


        window.onload = function () {
            var input = document.getElementById("file_input");
            var result, div;

            if (typeof FileReader === 'undefined') {
                result.innerHTML = "抱歉,你的浏览器不支持 FileReader";
                input.setAttribute('disabled', 'disabled');
            } else {
                input.addEventListener('change', readFile, false);
            }     //handler


            var fd = null;  //FormData方式发送请求
            fd = new FormData();
            var num=0;
            function readFile() {
                var iLen = this.files.length;
                for (var i = 0; i < iLen; i++) {
                    if (!input['value'].match(/.jpg|.gif|.png|.bmp|.mp3/i)) {  //判断上传文件格式
                        return alert("上传的图片格式不正确,请重新选择");
                    }
                    var reader = new FileReader();
                    fd.append(num, this.files[i]);
                    num=num+1;
                    reader.readAsDataURL(this.files[i]);  //转成base64
                    var fileName = this.files[i].name;
                    reader.onload = function (e) {
                        result = '<div style="display:none" class="result" ><img src="' + this.result + '" alt="" /><div style="text-align: center">' + fileName + '</div></div>';
                        div = document.createElement('div');
                        div.innerHTML = result;
                        div['className'] = 'float';
                        document.getElementsByTagName('body')[0].appendChild(div);    //插入dom树
                        var img = div.getElementsByTagName('img')[0];
                        img.onload = function () {
                            var nowHeight = ReSizePic(this); //设置图片大小
                            this.parentNode.style.display = 'block';
                            var oParent = this.parentNode;
                            if (nowHeight) {
                                oParent.style.paddingTop = (oParent.offsetHeight - nowHeight) / 2 + 'px';
                            }
                        }
                    }
                }
            }

            function send() {
                $.ajax({
                    url: '${pageContext.request.contextPath}/makeVideoByMoban1',
                    type: 'post',
                    data: fd,
                    dataType: 'JSON',
                    cache: false,
                    processData: false,   //用FormData传fd时需有这两项
                    contentType: false,
                    success: function (data) {
                        console.log('返回的数据:' + JSON.stringify(data))
                    }
                })
            }

            var oBtn = document.getElementsByTagName('button')[0];
            oBtn.onclick = function () {
                if (!input.files.length) {
                    return alert('请先选择文件');
                }
                send();
            }
        }

        /*
         用ajax发送fd参数时要告诉jQuery不要去处理发送的数据,
         不要去设置Content-Type请求头才可以发送成功,否则会报“Illegal invocation”的错误,
         也就是非法调用,所以要加上“processData: false,contentType: false,”
         * */


        function ReSizePic(ThisPic) {
            var RePicWidth = 200; //这里修改为您想显示的宽度值

            var TrueWidth = ThisPic.width; //图片实际宽度
            var TrueHeight = ThisPic.height; //图片实际高度

            if (TrueWidth > TrueHeight) {
                //宽大于高
                var reWidth = RePicWidth;
                ThisPic.width = reWidth;
                //垂直居中
                var nowHeight = TrueHeight * (reWidth / TrueWidth);
                return nowHeight;  //将图片修改后的高度返回,供垂直居中用
            } else {
                //宽小于高
                var reHeight = RePicWidth;
                ThisPic.height = reHeight;
            }
        }


    </script>
</head>
<body ng-controller="Aaa">
<div class="container">
    <label>请选择一个图像文件:</label>
    <input type="file" id="file_input" multiple/> <!--用input标签并选择type=file,记得带上multiple,不然就只能单选图片了-->
    <button>提交</button>
</div>
</body>
</html>

 

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值