• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Web Browser's JVM version

 
Ranch Hand
Posts: 170
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there a way to find out what version of JVM my web browser is using? Thanks.
 
Bartender
Posts: 2205
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Call System.getProperties(), then call getProperty(String) with one of these keys:
java.vm.specification.version -Java Virtual Machine specification version
java.vm.specification.vendor - Java Virtual Machine specification vendor
java.vm.specification.name - Java Virtual Machine specification name
java.vm.version -Java Virtual Machine implementation version
java.vm.vendor - Java Virtual Machine implementation vendor
java.vm.name - Java Virtual Machine implementation name
See the JavaDocs for System.getProperties() for more information.
 
reply
    Bookmark Topic Watch Topic
  • New Topic