156 lines
4.4 KiB
Java
156 lines
4.4 KiB
Java
package com.cpop.common.utils;
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.cpop.common.utils.text.Convert;
|
|
import org.springframework.web.context.request.RequestAttributes;
|
|
import org.springframework.web.context.request.RequestContextHolder;
|
|
import org.springframework.web.context.request.ServletRequestAttributes;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import javax.servlet.http.HttpSession;
|
|
import java.io.BufferedReader;
|
|
import java.io.IOException;
|
|
|
|
/**
|
|
* 客户端工具类
|
|
*
|
|
* @author DB
|
|
*/
|
|
public class ServletUtils {
|
|
|
|
/**
|
|
* 获取String参数
|
|
*/
|
|
public static String getParameter(String name) {
|
|
return getRequest().getParameter(name);
|
|
}
|
|
|
|
/**
|
|
* 获取String参数
|
|
*/
|
|
public static String getParameter(String name, String defaultValue) {
|
|
return Convert.toStr(getRequest().getParameter(name), defaultValue);
|
|
}
|
|
|
|
/**
|
|
* 获取Integer参数
|
|
*/
|
|
public static Integer getParameterToInt(String name) {
|
|
String parameter = getRequest().getParameter(name);
|
|
if (StringUtils.isBlank(parameter)){
|
|
//尝试从请求体中获取
|
|
BufferedReader reader;
|
|
try {
|
|
reader = getRequest().getReader();
|
|
StringBuilder body = new StringBuilder();
|
|
String line;
|
|
while ((line = reader.readLine()) != null) {
|
|
body.append(line);
|
|
}
|
|
String requestBody = body.toString();
|
|
//转json
|
|
JSONObject json = JSONObject.parseObject(requestBody);
|
|
if (null == json) {
|
|
return null;
|
|
}
|
|
parameter = json.getString(name);
|
|
} catch (IOException e) {
|
|
throw new RuntimeException("获取分页参数失败!");
|
|
}
|
|
}
|
|
return Convert.toInt(parameter);
|
|
}
|
|
|
|
/**
|
|
* 获取Integer参数
|
|
*/
|
|
public static Integer getParameterToInt(String name, Integer defaultValue) {
|
|
return Convert.toInt(getRequest().getParameter(name), defaultValue);
|
|
}
|
|
|
|
/**
|
|
* 获取Boolean参数
|
|
*/
|
|
public static Boolean getParameterToBool(String name) {
|
|
return Convert.toBool(getRequest().getParameter(name));
|
|
}
|
|
|
|
/**
|
|
* 获取Boolean参数
|
|
*/
|
|
public static Boolean getParameterToBool(String name, Boolean defaultValue) {
|
|
return Convert.toBool(getRequest().getParameter(name), defaultValue);
|
|
}
|
|
|
|
/**
|
|
* 获取request
|
|
*/
|
|
public static HttpServletRequest getRequest() {
|
|
return getRequestAttributes().getRequest();
|
|
}
|
|
|
|
/**
|
|
* 获取response
|
|
*/
|
|
public static HttpServletResponse getResponse() {
|
|
return getRequestAttributes().getResponse();
|
|
}
|
|
|
|
/**
|
|
* 获取session
|
|
*/
|
|
public static HttpSession getSession() {
|
|
return getRequest().getSession();
|
|
}
|
|
|
|
public static ServletRequestAttributes getRequestAttributes() {
|
|
RequestAttributes attributes = RequestContextHolder.getRequestAttributes();
|
|
return (ServletRequestAttributes) attributes;
|
|
}
|
|
|
|
/**
|
|
* 将字符串渲染到客户端
|
|
*
|
|
* @param response 渲染对象
|
|
* @param string 待渲染的字符串
|
|
* @return null
|
|
*/
|
|
public static String renderString(HttpServletResponse response, String string) {
|
|
try {
|
|
response.setStatus(200);
|
|
response.setContentType("application/json");
|
|
response.setCharacterEncoding("utf-8");
|
|
response.getWriter().print(string);
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* 是否是Ajax异步请求
|
|
*
|
|
* @param request
|
|
*/
|
|
public static boolean isAjaxRequest(HttpServletRequest request) {
|
|
String accept = request.getHeader("accept");
|
|
if (accept != null && accept.contains("application/json")) {
|
|
return true;
|
|
}
|
|
|
|
String xRequestedWith = request.getHeader("X-Requested-With");
|
|
if (xRequestedWith != null && xRequestedWith.contains("XMLHttpRequest")) {
|
|
return true;
|
|
}
|
|
|
|
String uri = request.getRequestURI();
|
|
if (StringUtils.inStringIgnoreCase(uri, ".json", ".xml")) {
|
|
return true;
|
|
}
|
|
|
|
String ajax = request.getParameter("__ajax");
|
|
return StringUtils.inStringIgnoreCase(ajax, "json", "xml");
|
|
}
|
|
}
|