java

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • santoshmiracle
    New Member
    • Jul 2007
    • 12

    #1

    java

    how can we get operatingsystem version using javacode
  • madhoriya22
    Contributor
    • Jul 2007
    • 251

    #2
    Originally posted by santoshmiracle
    how can we get operatingsystem version using javacode
    Hi,
    Use these two lines of code and u vil get what u want :-)
    Code:
    System.out.println(System.getProperty ("os.name"));
    System.out.println(System.getProperty ("os.version"));
    Thanks and regards,
    madhoriya

    Comment

    Working...