天貓php判斷移動設備的正則(個人猜測),覺得很好用,于是就決定移植到jsp里面,大家可以參考下
看到了一篇很好的文章, 《在天貓,前端做什么?》,里面有天貓php判斷移動設備的正則(個人猜測),覺得很好用,于是就決定移植到jsp里面。
jsp文件名為 index.jsp,其實也可以使用過濾器來進行攔截,然后跳轉到其他域名去。
完整代碼如下:
代碼如下:
<import=java.util.regex.matcher%>
< import=java.util.regex.pattern%>
<%@ page language=java pageencoding=utf-8%>
<%!
// b 是單詞邊界(連著的兩個(字母字符 與 非字母字符) 之間的邏輯上的間隔),
// 字符串在編譯時會被轉碼一次,所以是 b
// b 是單詞內(nèi)部邏輯間隔(連著的兩個字母字符之間的邏輯上的間隔)
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;
string tablereg = b(ipad|tablet|(nexus 7)|up.browser
+|[1-4][0-9]{2}x[1-4][0-9]{2})b;
pattern phonepat = pattern.compile(phonereg, pattern.case_insensitive);
pattern tablepat = pattern.compile(tablereg, pattern.case_insensitive);
public boolean checkmobile(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;
}
}
%>
<%
string path = request.getcontextpath();
string basepath = request.getscheme()+://+request.getservername()+:+request.getserverport()+path+/;
//
string useragent = request.getheader( user-agent ).tolowercase();
if(null == useragent){
useragent = ;
}
if(checkmobile(useragent)){
response.sendredirect(basepath+download.html);
//request.getrequestdispatcher(/download.html).forward(request,response);
} else {
response.sendredirect(basepath+index.html);
//request.getrequestdispatcher(/index.html).forward(request,response);
}
//
%>
<!doctype html>
<html lang=zh-cn>
<head>
<base href=<%=basepath%>>
<title>測試移動設備跳轉</title>
<meta http-equiv=pragma content=no-cache>
<meta http-equiv=cache-control content=no-cache>
<meta http-equiv=expires content=0>
<meta http-equiv=keywords content=測試,移動設備,跳轉>
<meta http-equiv=description content=測試移動設備跳轉>
<!--
<link rel=stylesheet type=text/css href=styles.css>
-->
</head>
<body>
<div id=pagecontent style=min-height:500px;_height:500px;>
正在運行!<br>
</div>
</body>
</html>
更多信息請查看IT技術專欄