ServletUtils.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. package com.ruoyi.common.utils;
  2. import java.io.IOException;
  3. import javax.servlet.http.HttpServletRequest;
  4. import javax.servlet.http.HttpServletResponse;
  5. import javax.servlet.http.HttpSession;
  6. import org.springframework.web.context.request.RequestAttributes;
  7. import org.springframework.web.context.request.RequestContextHolder;
  8. import org.springframework.web.context.request.ServletRequestAttributes;
  9. import com.ruoyi.common.core.text.Convert;
  10. /**
  11. * 客户端工具类
  12. *
  13. * @author ruoyi
  14. */
  15. public class ServletUtils
  16. {
  17. /**
  18. * 定义移动端请求的所有可能类型
  19. */
  20. private final static String[] agent = { "Android", "iPhone", "iPod", "iPad", "Windows Phone", "MQQBrowser" };
  21. /**
  22. * 获取String参数
  23. */
  24. public static String getParameter(String name)
  25. {
  26. return getRequest().getParameter(name);
  27. }
  28. /**
  29. * 获取String参数
  30. */
  31. public static String getParameter(String name, String defaultValue)
  32. {
  33. return Convert.toStr(getRequest().getParameter(name), defaultValue);
  34. }
  35. /**
  36. * 获取Integer参数
  37. */
  38. public static Integer getParameterToInt(String name)
  39. {
  40. return Convert.toInt(getRequest().getParameter(name));
  41. }
  42. /**
  43. * 获取Integer参数
  44. */
  45. public static Integer getParameterToInt(String name, Integer defaultValue)
  46. {
  47. return Convert.toInt(getRequest().getParameter(name), defaultValue);
  48. }
  49. /**
  50. * 获取request
  51. */
  52. public static HttpServletRequest getRequest()
  53. {
  54. return getRequestAttributes().getRequest();
  55. }
  56. /**
  57. * 获取response
  58. */
  59. public static HttpServletResponse getResponse()
  60. {
  61. return getRequestAttributes().getResponse();
  62. }
  63. /**
  64. * 获取session
  65. */
  66. public static HttpSession getSession()
  67. {
  68. return getRequest().getSession();
  69. }
  70. public static ServletRequestAttributes getRequestAttributes()
  71. {
  72. RequestAttributes attributes = RequestContextHolder.getRequestAttributes();
  73. return (ServletRequestAttributes) attributes;
  74. }
  75. /**
  76. * 将字符串渲染到客户端
  77. *
  78. * @param response 渲染对象
  79. * @param string 待渲染的字符串
  80. * @return null
  81. */
  82. public static String renderString(HttpServletResponse response, String string)
  83. {
  84. try
  85. {
  86. response.setContentType("application/json");
  87. response.setCharacterEncoding("utf-8");
  88. response.getWriter().print(string);
  89. }
  90. catch (IOException e)
  91. {
  92. e.printStackTrace();
  93. }
  94. return null;
  95. }
  96. /**
  97. * 是否是Ajax异步请求
  98. *
  99. * @param request
  100. */
  101. public static boolean isAjaxRequest(HttpServletRequest request)
  102. {
  103. String accept = request.getHeader("accept");
  104. if (accept != null && accept.indexOf("application/json") != -1)
  105. {
  106. return true;
  107. }
  108. String xRequestedWith = request.getHeader("X-Requested-With");
  109. if (xRequestedWith != null && xRequestedWith.indexOf("XMLHttpRequest") != -1)
  110. {
  111. return true;
  112. }
  113. String uri = request.getRequestURI();
  114. if (StringUtils.inStringIgnoreCase(uri, ".json", ".xml"))
  115. {
  116. return true;
  117. }
  118. String ajax = request.getParameter("__ajax");
  119. if (StringUtils.inStringIgnoreCase(ajax, "json", "xml"))
  120. {
  121. return true;
  122. }
  123. return false;
  124. }
  125. /**
  126. * 判断User-Agent 是不是来自于手机
  127. */
  128. public static boolean checkAgentIsMobile(String ua)
  129. {
  130. boolean flag = false;
  131. if (!ua.contains("Windows NT") || (ua.contains("Windows NT") && ua.contains("compatible; MSIE 9.0;")))
  132. {
  133. // 排除 苹果桌面系统
  134. if (!ua.contains("Windows NT") && !ua.contains("Macintosh"))
  135. {
  136. for (String item : agent)
  137. {
  138. if (ua.contains(item))
  139. {
  140. flag = true;
  141. break;
  142. }
  143. }
  144. }
  145. }
  146. return flag;
  147. }
  148. }