码迷,mamicode.com
首页 >  
搜索关键字:user_agent    ( 1107个结果
JS判断客户端是否是iOS或者Android或者ipad(二)
js判断客户端是IPAD和iphone多了就不说了,直接上代码:12345678910111213141516171819202122function checkIsIphoneIpad(){ var pda_user_agent_list = new Array("iPhone", "iPod",...
分类:移动开发   时间:2015-09-23 14:43:59    阅读次数:334
计算机网络之电子邮件系统
电子邮件系统一个电子邮件系统应具有三个主要组成部分:用户代理、邮件服务器、邮件发送协议(如SMTP)与邮件读取协议(如POP)。用户代理(User Agent)就是用户与电子邮件系统的接口,在大多数情况下它就是运行在用户PC机中的一个程序。一般具有撰写、显示、处理、通信等功能。因特网上有许多邮件服务器可供用户选择,邮件服务器24小时不间断地工作,并且具有大容量的邮件信箱。邮件服务器的功能是发送和接...
分类:其他好文   时间:2015-09-23 13:34:55    阅读次数:273
JavaSe:Cookie 管理的API介绍
CookieManager在使用HttpURLConnection中,并没有关于Cookie的管理。如果使用Java程序时,怎么管理cookie呢?Cookie案例1. User Agent -> ServerPOST /acme/login HTTP/1.1[form data]2. Server...
分类:编程语言   时间:2015-09-19 09:42:02    阅读次数:228
iOS UIWebView 修改user-agent
WebView 没有提供设置user-agent 的接口,无论是设置要加载的request,还是在delegate 中设置request,经测试都是无效的。如下:方案一:[objc] view plaincopyNSMutableURLRequest*request=[[NSMutableURLRe...
分类:移动开发   时间:2015-09-17 13:19:06    阅读次数:224
select 通过表单提交获取select中的值
:User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36Form Dataview sourceview URL ...
分类:其他好文   时间:2015-09-17 06:22:30    阅读次数:181
Detecting iOS
Detecting iOSI am not a fan of User Agent sniffing, but here is how you would do it:var iOS = /iPad|iPhone|iPod/.test(navigator.platform);Another way,...
分类:移动开发   时间:2015-09-15 12:42:47    阅读次数:191
2.4-nginx禁止指定user_agent
user_agent用来识别访问者的操作系统(包括版本号)浏览器(包括版本号)和用户个人偏好的代码比如我们的服务器网站,会被一些搜索引擎的爬虫程序访问,这对服务器压力造成了一定的影响。我们就可以根据爬虫的user_agent标示,来禁止掉它访问网站。可以用location语句,也可以不用..
分类:其他好文   时间:2015-09-14 00:45:33    阅读次数:138
Robots 限制搜索引擎蜘蛛抓取哪些文件
编辑一份 Robots 文件,另存为robots.txt,存在到服务器的根目录里 Java代码?? User-agent:?*??? Disallow:?/plus/ad_js.php?? Disallow:?/plus/advancedsearch.php?? Disallow:?/plus/car.php?? ...
分类:其他好文   时间:2015-09-12 01:09:38    阅读次数:272
1.9-nginx不记录指定文件类型日志
nginx的日志记录和格式,在主配置文件中有配置vim/usr/local/nginx/conf/nginx.conf中这一行log_formatcombined_realip‘$remote_addr$http_x_forwarded_for[$time_local]‘‘$host"$request_uri"$status‘‘"$http_referer""$http_user_agent"‘;combined_realip是日志的名字,可以..
分类:其他好文   时间:2015-09-12 00:55:28    阅读次数:214
新浪模拟登陆
#-*-coding:utf-8-*-import urllib2import urllibimport cookielibheaders = {'User-Agent':'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Fir...
分类:其他好文   时间:2015-09-10 14:24:39    阅读次数:198
1107条   上一页 1 ... 82 83 84 85 86 ... 111 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!