Link to home
Start Free TrialLog in
Avatar of ZoniacUser
ZoniacUser

asked on

IE 11 : How do we Get the Browser Version I.E 11 Using Java ?

Hello All,

I'm using I.E - version 11 Browser. In My application it has some issue. so that i want to detect the browser version using java.

Before I.E 11 , we using "getHttpServletRequest().getHeader("User-Agent")".

It gives the the Browser name and Version. But After Introducing I.E 11 User Agent MSIE was removed..

So that how can we get the version for I.E in JAVA.

If any help it would help me a lot...

Thank You...
Avatar of jcimarron
jcimarron
Flag of United States of America image

ZoniacUser--
I may not understand the situation, but does this reference help
https://java.com/en/download/help/ie_tips.xml 
Java is up to version 7 Update 45 now, but the instructions are still valid.

Or perhaps this reference
https://java.com/en/download/help/enable_browser.xml

Or use this
Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko

Taken from
http://msdn.microsoft.com/en-us/library/ie/bg182625(v=vs.85).aspx
ASKER CERTIFIED SOLUTION
Avatar of dpearson
dpearson

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ZoniacUser
ZoniacUser

ASKER

Thank you for your valuable Comments ! It Works.