I wrote a small hack that uses Java JNA and TCP sockets to transmit battery information from a Windows 7 system to other systems on my network, and I'd now like to add thermal monitoring functionality to it. Is it possible to monitor system thermal statistics from JNA?

Edit: Forgot to mention that I need a "pure Java" solution (but JNA and friends are permitted); I'm in a horrible environment that ensures I can't run applications that aren't digitally signed, I don't have access to the digital signature list, and I can't disable the digital signature lockdowns.

link|improve this question

78% accept rate
possible duplicate stackoverflow.com/questions/117043/… – Rajeev Sreedharan Sep 4 '11 at 6:19
This question has far narrower scope, and much tighter restrictions; for instance, I don't have the option to use SNMP. I need a "pure Java" solution for the reasons that I've mentioned in a comment to the answer @Snicolas submitted. – Jashank Sep 4 '11 at 8:53
feedback

2 Answers

Most stuff I've read shows that manufacturers use WMI to expose this information. To allow your Java program to access WMA, check out this thread: Recommended libraries/howtos for using WMI with java?

link|improve this answer
That might, under other circumstances, work. On this circumsized system, it seems I don't have the necessary WMI providers for thermal sensing. That's a good solution for other things, though, and I'm going to persue it. – Jashank Sep 4 '11 at 9:06
feedback

If you could find a command line utility that works on windows to get sys temp you could call it from a processbuilder in Java.

Stephane

link|improve this answer
One of the things that disqualifies this is that I need a "pure Java" solution; I'm in a horrible environment that ensures I can't run applications that aren't digitally signed, I don't have access to the digital signature list, and I can't fix it. Sorry. – Jashank Sep 4 '11 at 8:51
So if you don t have wmi and must found java solution, you can t. – Snicolas Sep 4 '11 at 14:56
feedback

Your Answer

 
or
required, but never shown

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