I'm working on a Spring MVC application, and I need to access client browser name and version.
I have an instance of HttpServletRequest
in my action as a parameter and use request.getHeader("User-Agent")
method, but this returned Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko
in Internet explorer 9.
I need to exact number and version. Is there any tools for doing that?