Exception in thread “Main” java.lang.UnsatisfiedLinkError: com.sun.midp.main.Configuration.getProperty0 (Ljava / lang / String;) Ljava / lang / String;
at com.sun.midp.main.Configuration.getProperty0 ( Native Method)
at com.sun.midp.main.Configuration.getProperty (Configuration.java: 32)
at com.sun.midp.lcdui.Resource. (Resource.java: 30)
at com.sun.midp. main.Main.initSystemLabels (Main.java: 686)
at com.sun.midp.main.Main.main (Main.java: 103)
How to resolve this?
I think that
nativeSetTable()is protected or private, that’s why you don’t see it. And moreovernativeSetTable()is a native method, which means that it is based on native code (already compiled for a specific processor and available in a specific lib [ie. a DLL]).UnsatisfiedLinkErrormeans that this particular method couldn’t be retrieved and executed properly.This means that your Java ME emulator must have missing
librairies. You should try to reinstall it.Resources :