I want to check Windows edition (Basic or Home or Professional or Business or other) in Java. Please let me know the solution.
Thanks much in adv.
|
|
You can always use Java to call the Windows command 'systeminfo' then parse out the result, I can't seem to find a way to do this natively in Java.
|
|||||||||||
|
|
You can use the Apache Commons Library The class SystemUtils provides several methods to determine such information. |
|||
|
You can get a lot of information about the System you're running on by asking the JVM about it's System Properties:
more info here: http://www.herongyang.com/Java/System-JVM-and-OS-System-Properties.html EDIT: the property |
|||
|