Hardware features

Hello, i need to know the hardware features of any machine trough a java class. I think there is a package or class that allows me to do this.The hardware features i will need are : hard disk, processing velocity and ram memory.any help will be appreciated.Thanks.....
[299 byte] By [Sharam_la] at [2007-11-26 13:57:09]
# 1

Hi,

You can use JNative to get those informations, see a screenshot at http://sourceforge.net/project/screenshots.php?group_id=156421 showing the hard drive occupation.

All other informations are easily findable by calling various Kernel32 functions.

--Marc (http://jnative.sf.net)

mdentya at 2007-7-8 1:37:02 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 2
Thanks :), any question where i can find more samples about this?
Sharam_la at 2007-7-8 1:37:02 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 3

Hi,

You can see here : http://jnative.free.fr/SPIP-v1-8-3/article.php3?id_article=4,

and here : http://jnative.free.fr/SPIP-v1-8-3/article.php3?id_article=8

and here : http://sourceforge.net/forum/forum.php?forum_id=525506

and here : http://msdn2.microsoft.com/en-us/library/ms683223.aspx

Google is your friend too.

--Marc (http://jnative.sf.net)

mdentya at 2007-7-8 1:37:02 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 4
Other question excuss me, this implementation are utils for other Operative System i.e. Suse-Linux.
Sharam_la at 2007-7-8 1:37:02 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 5
hi,Under Linux, sometimes it's simplier to read the /proc filesystem for the values you need.Or use the libxxxx.so you would use if you had to do it in C/C++. It is the same syntax as under Windows.--Marc ( http://jnative.sf.net)
mdentya at 2007-7-8 1:37:02 > top of Java-index,Java HotSpot Virtual Machine,Specifications...