国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JSP > 正文

JSP判斷移動設備的正則

2024-09-05 00:22:04
字體:
供稿:網(wǎng)友
天貓php判斷移動設備的正則(個人猜測),覺得很好用,于是就決定移植到JSP里面,大家可以參考下

看到了一篇很好的文章, 《在天貓,前端做什么?》,里面有天貓php判斷移動設備的正則(個人猜測),覺得很好用,于是就決定移植到JSP里面。

jsp文件名為 index.jsp,其實也可以使用過濾器來進行攔截,然后跳轉(zhuǎn)到其他域名去。

完整代碼如下:

復制代碼 代碼如下:


<%@page import="java.util.regex.Matcher"%>
<%@page import="java.util.regex.Pattern"%>
<%@ page language="java" pageEncoding="UTF-8"%>
<%!

// /b 是單詞邊界(連著的兩個(字母字符 與 非字母字符) 之間的邏輯上的間隔),
// 字符串在編譯時會被轉(zhuǎn)碼一次,所以是 "http://b"
// /B 是單詞內(nèi)部邏輯間隔(連著的兩個字母字符之間的邏輯上的間隔)
String phoneReg = "http://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 = "http://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+"http://www.survivalescaperooms.com/";

//
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>測試移動設備跳轉(zhuǎn)</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="測試,移動設備,跳轉(zhuǎn)">
<meta http-equiv="description" content="測試移動設備跳轉(zhuǎn)">
<!--
<link type="text/css" href="styles.css">
-->
</head>

<body>

<div>

正在運行!<br>
</div>

</body>
</html>

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 南华县| 邢台县| 绩溪县| 东乡族自治县| 商洛市| 泗水县| 澄迈县| 武城县| 阿尔山市| 吴川市| 手游| 芮城县| 霍邱县| 盖州市| 镇赉县| 正宁县| 昔阳县| 井陉县| 鹤山市| 徐汇区| 高台县| 边坝县| 南陵县| 仙居县| 布拖县| 太康县| 榆树市| 桐庐县| 房山区| 崇礼县| 姜堰市| 庆安县| 花垣县| 革吉县| 灯塔市| 札达县| 三门县| 鹤峰县| 正蓝旗| 彭山县| 岑溪市|