siva636
siva636

Reputation: 16451

Guessing what is the client browser

I got the following information using request.getHeader("User-Agent") method inside a Servlet:

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10

Actually what is the client browser?

Upvotes: 4

Views: 157

Answers (1)

BalusC
BalusC

Reputation: 1109542

It's Chrome 8.0.552.

This website may be useful for future consultations: http://user-agent-string.info. Paste the UA string there and click Analyze. They have even a XML-RPC webservice.

Upvotes: 8

Related Questions