-
传入http请求的UserAgent 根据它判断是手机还是电脑发送过来的请求
- public static boolean choose(String userAgent) {
- if (userAgent.indexOf("Noki") > -1 ||
- userAgent.indexOf("Eric") > -1 ||
- userAgent.indexOf("WapI") > -1 ||
- userAgent.indexOf("MC21") > -1 ||
- userAgent.indexOf("AUR") > -1 ||
- userAgent.indexOf("R380") > -1 ||
- userAgent.indexOf("UP.B") > -1 ||
- userAgent.indexOf("WinW") > -1 ||
- userAgent.indexOf("UPG1") > -1 ||
- userAgent.indexOf("upsi") > -1 ||
- userAgent.indexOf("QWAP") > -1 ||
- userAgent.indexOf("Jigs") > -1 ||
- userAgent.indexOf("Java") > -1 ||
- userAgent.indexOf("Alca") > -1 ||
- userAgent.indexOf("MITS") > -1 ||
- userAgent.indexOf("MOT-") > -1 ||
- userAgent.indexOf("My S") > -1 ||
- userAgent.indexOf("WAPJ") > -1 ||
- userAgent.indexOf("fetc") > -1 ||
- userAgent.indexOf("ALAV") > -1 ||
- userAgent.indexOf("Wapa") > -1 ||
- userAgent.indexOf("Oper") > -1) {
- return true;
- } else {
- return false;
- }
- }
-
相关阅读:
excel的支持——xlrd模块、xlwt模块的安装
安装wxpython——python程序GUI图形界面使用
if __name__ == '__main__':
U盘装win7
cgitb.enable()浏览器报告错误,容易定位问题
python_study_9-生成式
python_study_10-单例模式
python_自动化_1-读取excel
python_study_8-字符串/列表/字典使用方法
python_study_7-异常处理
-
原文地址:https://www.cnblogs.com/wahaccp/p/3806570.html
Copyright © 2020-2023
润新知