Bonjour j'ai ce problème lors de l'execution de mon programme sachant que aucun souci n'est aparent :
Voici la partie DataDescription :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5 Exception in thread "main" java.lang.NoSuchMethodError: jcl.data.DataDescription.<init>([Ljava/lang/String;Ljava/lang/String;)V at Maclaw.PelicanImageData.<init>(PelicanImageData.java:43) at Maclaw.P2PMaclaw.dataConfig(P2PMaclaw.java:107) at Maclaw.P2PMaclaw.main(P2PMaclaw.java:51)
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10 public DataDescription(String attributeNames[], String name) { this.attributeNames = new String[attributeNames.length]; for (int j = 0; j < this.attributeNames.length; j++) this.attributeNames[j] = new String(attributeNames[j]); this.types = new Type[attributeNames.length]; this.name = name; this.comments = "No comments"; }
Autrement sur uin autre projet j'ai un problème d'import quand je rajoute des projet au BuildPath ( toujours pas d'erreur apparentes ) mais au moment de l'execusion il trouve pas le projet Importer .
merci a vous
Partager