java怎么判断使用的浏览器是火狐浏览器

 我来答
f530476701
2015-11-03 · 超过10用户采纳过TA的回答
知道答主
回答量:52
采纳率:0%
帮助的人:23.7万
展开全部

Java判断浏览器版本与类型            
       

public static void main(String[] args) {
             String agent=request.getHeader("User-Agent").toLowerCase();
             System.out.println(agent);
             System.out.println("浏览器版本:"+getBrowserName(agent));
 }
 
/**
  * 获取浏览器版本信息
  * @Title: getBrowserName
  * @data:2015-1-12下午05:08:49
  * @author:wolf
  *
  * @param agent
  * @return
  */
public String getBrowserName(String agent) {
  if(agent.indexOf("msie 7")>0){
   return "ie7";
  }else if(agent.indexOf("msie 8")>0){
   return "ie8";
  }else if(agent.indexOf("msie 9")>0){
   return "ie9";
  }else if(agent.indexOf("msie 10")>0){
   return "ie10";
  }else if(agent.indexOf("msie")>0){
   return "ie";
  }else if(agent.indexOf("opera")>0){
   return "opera";
  }else if(agent.indexOf("opera")>0){
   return "opera";
  }else if(agent.indexOf("firefox")>0){
   return "firefox";
  }else if(agent.indexOf("webkit")>0){
   return "webkit";
  }else if(agent.indexOf("gecko")>0 && agent.indexOf("rv:11")>0){
   return "ie11";
  }else{
   return "Others";
  }
 }
 原文链接:http://blog.csdn.net/wolf_childan/article/details/42644749
2015哑秃
2015-11-03 · TA获得超过376个赞
知道小有建树答主
回答量:1164
采纳率:0%
帮助的人:225万
展开全部
UC,原始的safari就不错
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
2015劝创
2015-11-03 · TA获得超过207个赞
知道小有建树答主
回答量:1188
采纳率:0%
帮助的人:226万
展开全部
Uc我一直都在用
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式