| Author |
retrieving windows device manager info
|
Naadir Peterson
Ranch Hand
Joined: Sep 22, 2004
Posts: 37
|
|
Hi. Is there any way to get the info of the a pc similar to the device manager. The system.getProperties() method only returns the o/s info etc. I need the hardware of a pc. thanx
|
 |
David Mace
Ranch Hand
Joined: May 26, 2004
Posts: 35
|
|
It's not directly possible in Java because the language is not that low-level. If you want machine-specific information, you'll need to either obtain or write yourself some native code and make the necessary calls through JNI (Java Native Interface). It allows you to make platform-specific native calls so that you can retrieve the type of information you're looking for. Google for JNI for a nice tutorial by sun David
|
Dad always thought laughter was the best medicine, which I guess is why several of us died of tuberculosis. -Jack Handy
|
 |
 |
|
|
subject: retrieving windows device manager info
|
|
|