pang.jiabao
2025-05-22 b14cbe848a3c76cdbb4baa8f067f2a2c9ce1e07c
src/main/java/com/zy/common/utils/Http.java
@@ -13,9 +13,9 @@
 */
public class Http {
    public static void response(HttpServletResponse response, String baseRes){
    public static void response(HttpServletResponse response, String baseRes) {
        response.setCharacterEncoding("utf-8");
        response.setContentType("application/json; charset=utf-8");
        response.setContentType("application/json");
        try (PrintWriter out = response.getWriter()) {
            R r = R.parse(baseRes);
            JSONObject jsonObject = new JSONObject();