Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Java Version (JVM RT) on Client Side

Status
Not open for further replies.

BZJavaTalk

Programmer
Jun 23, 2004
4
US
Does anyone know a command in JSP or HTML or Java Script that can tell me what version of Java a client computer has?

I know how to convert my web pages with the HTMLConverter and add the Java Sun Plug in, but I would like to add code to be able to tell if the customer has Java run-time loaded, etc. In other words their browser will use the latest Sun JVM. I would like to check this for research and record it in our log files so I can see how many of my customers have installed it. This way I can see if it is worth developing Java Applets as part of our product.
 
You may use:

System.getProperty("java.version")
System.getProperty("java.vendor")
 
Not remotely you can't (sorry, not sure how to remotely) ...

--------------------------------------------------
Free Database Connection Pooling Software
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top