It isnt possible to display os properties as youve requested.
You can, however, display your java system properties as well as os name, version, etc.
Edit: You can probably do this via a C/C++ system command using JNICode:public class SystemProperties { public static void main(String []args) { System.getProperties().list(System.out); } }




Reply With Quote