How to use Hyperic SIGAR API with APPLET to detect Client OS version and architecture.
Actually I need to detect client machine’s OS verion & architecture using APPLET. I planned to use SIGAR. But sigar.jar needs some dlls to detect the information, which is stopping me from using it to detect client system’s OS information. Please help.
You don’t need any special API if your applet is signed.
You can use Java built in libraries.
To get system information you can read java system variables
os.version,os.archandos.name.Here is the code, which you can start with to find those variables:
Update:
See how-to-make-a-jar-file-that-include-dll-files and
calling-a-dll-from-an-applet-via-jni. That should help you.