vote up 1 vote down star

i want to detect processors fan speed is there any Java library to do so.

flag

60% accept rate

4 Answers

vote up 3 vote down

Use sensors. use smbus/i2c/gpio lib.

link|flag
is there any library for java. – nicky Oct 14 at 13:02
1  
ipmi for java etc. – EffoStaff Effo Oct 14 at 13:07
vote up 2 vote down

Not sure what platform you're interested in, but on Windows you can use WMI, which provides a class for fan information. The exact location of the fan information in the WMI repository will depend on your motherboard manufacturer (if they provide it at all), so there is no easy way to get the information without coding specifically for different motherboards. You can use this tool to browse the repository and see what's available.

link|flag
my platform is java.. – nicky Oct 14 at 13:07
vote up 1 vote down

You'll have to use JNI or JNA to manipulate the right library on each platform (Windows, Mac, Linux...). For Linux:

Lm-sensors is a hardware health monitoring package for Linux. It allows you to access information from temperature, voltage, and fan speed sensors. It works with most newer systems.

Homepage: http://www.lm-sensors.org

link|flag
vote up 2 vote down

In pure Java - No. So your options are - Write JNI wrappers for all interested platforms. Search for a command line application that provides this for each platform, and use them.

I would normally add "google to see if anyone else has done this". But I'd guess you have already done this and not found anything. I am not surprised - Java is not normally used for low level stuff like this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.