Springmvc 文件上傳和json處理


SpringMVC文件上傳

1.相關依賴

 

<dependency>
      <groupId>commons-fileupload</groupId>
      <artifactId>commons-fileupload</artifactId>
      <version>1.3.3</version>
</dependency>

 

2.在springmvc-servlet.xml中配置文件上傳解析器

<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <!-- 必須和用戶JSP 的pageEncoding屬性一致,以便正確解析表單的內容 -->
        <property name="defaultEncoding" value="UTF-8"></property>
        <!-- 文件最大大小(字節) 1024*1024*50=50M-->
        <property name="maxUploadSize" value="52428800"></property>
        <!--resolveLazily屬性啟用是為了推遲文件解析,以便捕獲文件大小異常-->
        <property name="resolveLazily" value="true"/>
</bean>

3.upload.jsp:

<%--
  Created by IntelliJ IDEA.
  User: Admin
  Date: 2019/9/29
  Time: 20:28
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>文件上傳</title>
</head>
<body>
    <form action="${pageContext.request.contextPath}/upload" method="post" enctype="multipart/form-data">
        上傳文件:<input type="file" name="img" >
        <button type="submit">提交</button>
    </form>


</body>
</html>

HelloController:

@RequestMapping("/upload")
    public String upload(MultipartFile img) throws IOException {
        FileUtils.copyInputStreamToFile(img.getInputStream(),new File("D:/yyy/"+img.getOriginalFilename()));
        return "forward:upload";
    }

 

 

json處理

在方法上面加上@ResponseBody這個注解就好了

 

 

@ResponseBody
    @RequestMapping("/jsonData1")
    public List<Map> jsonData1(){
        return bookservice.listPager(new Book(),new PageBean());
    }

    @ResponseBody
    @RequestMapping("/jsonData2")
    public Map jsonData2(){
        return bookservice.listPager(new Book(),new PageBean()).get(0);
    }

 

 

 

工具類JSONResult:

package com.psy.util;

public class JSONResult {

    // 響應業務狀態
    private Integer status;

    // 響應消息
    private String msg;

    // 響應中的數據
    private Object data;
    
    private String ok;    // 不使用

    public static JSONResult build(Integer status, String msg, Object data) {
        return new JSONResult(status, msg, data);
    }

    public static JSONResult ok(Object data) {
        return new JSONResult(data);
    }

    public static JSONResult ok() {
        return new JSONResult(null);
    }
    
    public static JSONResult errorMsg(String msg) {
        return new JSONResult(500, msg, null);
    }
    
    public static JSONResult errorMap(Object data) {
        return new JSONResult(501, "error", data);
    }
    
    public static JSONResult errorTokenMsg(String msg) {
        return new JSONResult(502, msg, null);
    }
    
    public static JSONResult errorException(String msg) {
        return new JSONResult(555, msg, null);
    }

    public JSONResult() {

    }

    public JSONResult(Integer status, String msg, Object data) {
        this.status = status;
        this.msg = msg;
        this.data = data;
    }

    public JSONResult(Object data) {
        this.status = 200;
        this.msg = "OK";
        this.data = data;
    }

    public Boolean isOK() {
        return this.status == 200;
    }

    public Integer getStatus() {
        return status;
    }

    public void setStatus(Integer status) {
        this.status = status;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public Object getData() {
        return data;
    }

    public void setData(Object data) {
        this.data = data;
    }

    public String getOk() {
        return ok;
    }

    public void setOk(String ok) {
        this.ok = ok;
    }

}

 

@ResponseBody
    @RequestMapping("/jsonData3")
    public JSONResult jsonData3(){
        Map map = new HashMap();

        return JSONResult.ok("成功:這里可以存放字符串、對象、數組、集合都行,這樣可以節省拼接map集合的過程");
    }

    @ResponseBody
    @RequestMapping("/jsonData4")
    public JSONResult jsonData4(){
        return JSONResult.errorMsg("失敗:這里可以存放字符串、對象、數組、集合都行,這樣可以節省拼接map集合的過程");
    }

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM