Finding System information

Hi i want to know that how can i find Syatem information in Java. Is there any way to get all the hardware and software information and display it using Java code
[169 byte] By [Vikas_uka] at [2007-11-27 1:46:05]
# 1
No.You must use OS specific APIs and/or applications.
jschella at 2007-7-12 1:07:14 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 2
How shall i use OS specific API's in my Java application. Is it possible to fetch System details using C or C++ language and pass to Java.
Vikas_uka at 2007-7-12 1:07:14 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 3
Hi,You may call Win32/Linux OS specific functions with JNative (it's a free LGPL generic JNI wrapper).see how at : http://jnative.free.fr/SPIP-v1-8-3/article.php3?id_article=10--Marc ( http://jnative.sf.net)
mdentya at 2007-7-12 1:07:14 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 4
Or use Runtime.exec()
jschella at 2007-7-12 1:07:14 > top of Java-index,Java HotSpot Virtual Machine,Specifications...