#
Junjie
2024-07-04 b9d45f1ae21e52e933b2b762e2b1b8f0c63bd6b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.zy.asrs.wms.utils;
 
import com.alibaba.fastjson.JSON;
import com.zy.asrs.framework.common.R;
 
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
 
/**
 * Created by vincent on 1/29/2024
 */
public class HttpUtils {
 
    public static void responseError(HttpServletResponse response, Integer code, String message, String error) {
        response.setContentType("application/json;charset=UTF-8");
        try {
            PrintWriter out = response.getWriter();
            out.write(JSON.toJSONString(R.parse(code + "-" + message)));
            out.flush();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
 
}