判断当前请求是否为移动端,然后设一个标识到session中,然后就可以随便处理了。不管你是单独处理,还是统一处理,直接读取session就可以做相应的判断了。
我封装成了一个类,现在分享:
-
package com.tgb.util;
-
-
import java.util.regex.Matcher;
-
import java.util.regex.Pattern;
-
-
-
-
-
-
-
-
-
-
public class CheckMobile {
-
-
-
-
-
static String phoneReg = "\b(ip(hone|od)|android|opera m(ob|in)i"
-
+"|windows (phone|ce)|blackberry"
-
+"|s(ymbian|eries60|amsung)|p(laybook|alm|rofile/midp"
-
+"|laystation portable)|nokia|fennec|htc[-_]"
-
+"|mobile|up.browser|[1-4][0-9]{2}x[1-4][0-9]{2})\b";
-
static String tableReg = "\b(ipad|tablet|(Nexus 7)|up.browser"
-
+"|[1-4][0-9]{2}x[1-4][0-9]{2})\b";
-
-
-
static Pattern phonePat = Pattern.compile(phoneReg, Pattern.CASE_INSENSITIVE);
-
static Pattern tablePat = Pattern.compile(tableReg, Pattern.CASE_INSENSITIVE);
-
-
-
-
-
-
-
-
-
-
public static boolean check(String userAgent){
-
if(null == userAgent){
-
userAgent = "";
-
}
-
-
Matcher matcherPhone = phonePat.matcher(userAgent);
-
Matcher matcherTable = tablePat.matcher(userAgent);
-
if(matcherPhone.find() || matcherTable.find()){
-
return true;
-
} else {
-
return false;
-
}
-
}
-
}
使用方式:
-
-
-
-
-
-
-
-
-
public boolean check(HttpServletRequest request,HttpServletResponse response) throws IOException{
-
boolean isFromMobile=false;
-
-
HttpSession session= request.getSession();
-
-
if(null==session.getAttribute("ua")){
-
try{
-
-
String userAgent = request.getHeader( "USER-AGENT" ).toLowerCase();
-
if(null == userAgent){
-
userAgent = "";
-
}
-
isFromMobile=CheckMobile.check(userAgent);
-
-
if(isFromMobile){
-
System.out.println("移动端访问");
-
session.setAttribute("ua","mobile");
-
} else {
-
System.out.println("pc端访问");
-
session.setAttribute("ua","pc");
-
}
-
}catch(Exception e){}
-
}else{
-
isFromMobile=session.getAttribute("ua").equals("mobile");
-
}
-
-
return isFromMobile;
-
}
在登录的时候,或者在action的execute中调用这个方法,不用改动原先的业务逻辑,即可判断请求的是否为移动端,然后再根据结果去做相应处理,应该就简单多了。
其实我在做的过程中,还是遇到了一个比较头疼的问题。经理说移动端的应用要求使用json格式,所以我想统一做一个处理,如果是从移动端访问,那么就把request和session中设置的Attribute全部读取到map或者list中,然后再转化为json格式输出。想法的美好的,结果有点小残酷。就拿登录来说,登录以后要跳转到list.jsp页,结果现在直接输出list中的数据了,但是页面没有跳转。页面跳转和返回json是冲突的。输出json的话,输出流就会关闭,不让再跳转,否则会提示错误。不知道大家有没有好的解决方案,如果不行的话,只能每个请求单独处理了。