bibliothéque jna avec Applet
Bonjour à tous,
j'ai une Applet qui utilise la bibliothéque jna pour utiliser des fichiers dll ça marche trés bien mais lorsque je tester mon Applet sur un autre Pc (1èr test sur PC de la société, 2ème test sur mon PC Portable) elle ne fonctionne pas correctement et dans la console java s'affixhe cela
Code:
1 2 3 4 5 6 7 8 9 10 11
| Exception in thread "thread applet-morpho/LoginMSOApplet.class-1" java.lang.UnsatisfiedLinkError: Unable to load library 'AccesDLL': Le module spécifié est introuvable.
at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:164)
at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:237)
at com.sun.jna.Library$Handler.<init>(Library.java:140)
at com.sun.jna.Native.loadLibrary(Native.java:374)
at com.sun.jna.Native.loadLibrary(Native.java:359)
at morpho.AccesDLL.initdll(AccesDLL.java:25)
at morpho.LoginMSOApplet.init(LoginMSOApplet.java:86)
at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
at java.lang.Thread.run(Unknown Source) |