我很好奇在我的网站(jsp)中获取访问者的操作系统信息。
我知道如何获取ip地址,纬度,经度等,
但是我想知道操作系统的信息,比如Lion或windows xp,7
有谁有什么想法吗?
谢谢。
发布于 2012-08-17 11:08:53
使用HttpServletRequest.getHeader(key)方法。
HttpServletRequest.getHeader(key)
${header["user-agent"]}
https://stackoverflow.com/questions/11999141
相似问题