My program relies on the following code to get available system memory:
import oshi.SystemInfo;
import oshi.hardware.HardwareAbstractionLayer;
SystemInfo si = new SystemInfo();
HardwareAbstractionLayer hal = si.getHardware();
// Next line throws exception: NoClassDefFoundError -> com/sun/jna/platform/win32/Psapi
long availableBytes = hal.getMemory().getAvailable();
double availableMegabytes = ((double) availableBytes) / 1048576;
double availableGigabytes = ((double) availableMegabytes)/1024;
Update: After deleting every occurrence of oshi-core
from every project in Workspace
(to remove possibility of transient conflict dependency - only 4.2.1
is left). Now the error I get is -> java.lang.NoClassDefFoundError: com/sun/jna/platform/win32/VersionHelpers
In pom.xml
I've added oshi-core
dependency - I've tried almost every version starting from version 3.4.0
to latest version 4.2.1
and they all result in the same error.
I realize oshi-core
relies on jna
and jna-platform
. In Dependency Hierarchy
I see both have resolved (compiled) to version 5.5.0
.
What is causing this error and how can it be solved?
Thanks!
P.S
I've seen some other threads with similar error but could not find any thread with this exact problem (missing com/sun/jna/platform/win32/Psapi
)
Seems
oshi-core
relies on internal undocumented features of the Sun / Oracle JVM, and you're running on a different and/or newer JVM that doesn't have that undocumented feature anymore. That's the risk of using undocumented features.Get a newer/other version of
oshi-core
that supports the version of the JVM you're using, or switch to use a JVM thatoshi-core
supports.