Salut a Tous
J essaye de pour appeller un code ecrit language C en Java. pour celaj utilise le JNI(Java Native Interface).
Pour une premier temps je veux deja convertir le "Hello World" ecrit de C en Java. selon ce lien <http://java.sun.com/docs/books/jni/html/start.html>
mais A l etape 7 lorsque je lance : java HelloWorld
je recois cette erreur:

H:\JNI_hello\helloworld\src>java HelloWorld
Exception in thread "main" java.lang.UnsatisfiedLinkError: H:\JNI_hello\hellowor
ld\src\HelloWorld.dll: Can't find dependent libraries
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(Unknown Source)
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at HelloWorld.<clinit>(HelloWorld.java:7)
Could not find the main class: HelloWorld. Program will exit.

Je tiens à preciser que je travaille dans Windows XP.

Merci pour votre aide.