/**
* 判断浏览器类型是否是IE,是则返回true,不是返回false
* ServletActionContext是struts2上下文对象
* @author 李英夫(2010-6-20 上午09:36:48)
* @return boolean
*/
public static boolean isIE(){
return ServletActionContext.getRequest().getHeader("USER-AGENT").toLowerCase().indexOf("msie") > 0 ? true : false;
}
Java判断浏览器类型
最新推荐文章于 2024-06-30 03:50:30 发布