Bonjour à tous.
En voulant appeler des fonctions C en java, cela me génère une erreur que je n'arrive pas à résoudre malgré mes recherches.
Voila le code:
La fonction de test:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13 public class InterfaceAvecC { static{ System.load("/home/fuzier/Documents/hex2/src/libInterfaceAvecC.so"); } public static native String creerGraphe(int n); }
Et voici l'erreur:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61 public class Test { private static void afficher(String s,int taille){ int h=0; for(int j=0;j<=taille+1;j++){ /* boucle correspondant au nombre de ligne à afficher*/ for(int a=0;a<j+1;a++) System.out.print(" "); if(j==0){ /* affichage de la première ligne */ for(int i=0;i<=taille;i++) System.out.print("W "); System.out.println("B"); } /* affichage du centre */ else if(j>0 && j<=taille){ for(int x=0;x<=taille+1;x++){ if(x==0 || x==taille+1) System.out.print("B "); else if(x>0 && x<taille+1){ System.out.print(s.charAt(h) + " "); h++; } } System.out.println(""); } else{ /* affichage dernière ligne */ System.out.print("B "); for(int i=0;i<=taille;i++) System.out.print("W "); } } } public static void main(String[] args){ String s=InterfaceAvecC.creerGraphe(9); afficher(s,9); } }
Voici aussi les fichiers .c et .h que j'utilise:/usr/lib/jvm/java-8-openjdk-amd64/bin/java: symbol lookup error: /home/fuzier/Documents/hex2/src/libInterfaceAvecC.so: undefined symbol: graphe_create
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 #include <stdlib.h> #include <string.h> #include "InterfaceAvecC.h" #include "graphe.h" JNIEXPORT jstring JNICALL Java_InterfaceAvecC_creerGraphe (JNIEnv *env, jclass cl, jint ji) { /* traitement en C */ Graphe g= graphe_create(ji); char* res=graphe_toString(g); /* conversion du résultat en chaîne Java */ jstring jres = (*env)->NewStringUTF(env, res); /* libération mémoire */ return jres; }
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 /* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class InterfaceAvecC */ #ifndef _Included_InterfaceAvecC #define _Included_InterfaceAvecC #ifdef __cplusplus extern "C" { #endif /* * Class: InterfaceAvecC * Method: creerGraphe * Signature: (I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_InterfaceAvecC_creerGraphe (JNIEnv *, jclass, jint); #ifdef __cplusplus } #endif #endif
ça fait un long moment que je cherche mais je ne suis pas un expert malheureusement.
Merci beaucoup pour votre aide![]()
Partager