码迷,mamicode.com
首页 > Web开发 > 详细

jsp访问浏览器信息、操作系统信息、客户端ip地址

时间:2014-07-26 02:18:46      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:blog   os   2014   re   c   html   htm   file   

<%
	String path = request.getContextPath();
	String agent = request.getHeader("User-Agent");
	String browInfo[] = agent.split(";");
	String realBrowser = browInfo[1].trim();//浏览器信息
	String osInfo = System.getProperty("os.name"); //操作系统信息
	String ip = request.getRemoteAddr();//客户端ip地址
 %>

jsp访问浏览器信息、操作系统信息、客户端ip地址,布布扣,bubuko.com

jsp访问浏览器信息、操作系统信息、客户端ip地址

标签:blog   os   2014   re   c   html   htm   file   

原文地址:http://blog.csdn.net/helloboat/article/details/38124961

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!