Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 262
siva636 Avatar asked Feb 25 '23 12:02

siva636


1 Answers

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.

like image 96
BalusC Avatar answered Mar 07 '23 23:03

BalusC