wrong ELF class: ELFCLASS32 (Possible cause: architecture word width mismatch)

后端 未结 1 1790
走了就别回头了
走了就别回头了 2021-01-17 16:31

I have this strange exception saying wrong ELF class but the wrapper is set correctly.

To read Belgiun ID card using this SDK from belgiun ID card issuers official s

相关标签:
1条回答
  • 2021-01-17 16:52

    It doesn't work because you're using a 64-bit version of Java, and the SDK you're trying to use contains a 32-bit native library (libbeidlibJava_Wrapper.so.3.5.3). The 64-bit JRE cannot load 32-bit native libraries.

    You'll need to use a 32-bit version of Java, or find a version of the SDK that has 64-bit native libraries.

    0 讨论(0)
提交回复
热议问题