Detecting Device Type in a web application

前端 未结 8 2310
隐瞒了意图╮
隐瞒了意图╮ 2020-11-28 08:48

We have a Java based application where in we want to detect the device type(mobile or desktop) for the device that is sending the request.

How is it possible?

8条回答
  •  [愿得一人]
    2020-11-28 09:05

    You'll have to read the User-Agent header from the request and decide on that.

    In vanilla servlet apps, a crude way of doing it is:

    public void doGet(HttpServletRequest request,
                    HttpServletResponse response) throws ServletException, IOException {
      if(request.getHeader("User-Agent").contains("Mobi")) {
        //you're in mobile land
      } else {
        //nope, this is probably a desktop
      }
    }
    

提交回复
热议问题