[Users-fr] Javasci sous NetBeans 6.5
todisoa michel
todisoa at net2dev.com
Mer 30 Jan 07:44:36 CET 2013
Bonjour,
J'ai un problème avec Netbeans.Il n'y a aucune donnée affichée sur la
console de sortie pourtant j'ai bien configuré NetBeans en suivant les
instructions dans un document pdf intitulé "Scilab Javasci Tests running on
PC-XP / VISTA
+ Netbeans 6-5" publié le 04/04/09 par P.Perrichon".
Voici mon code:
import org.scilab.modules.javasci.Scilab;
import org.scilab.modules.types.ScilabType;
import org.scilab.modules.types.ScilabDouble;
/**
*
*
*/
public class Example {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
try {
Scilab sci = new Scilab();
if (sci.open()) { // le traitement s'arrète là!!
/* Send a Scilab instruction */
sci.exec("foo = [ 2, 4, 6; 4, 0, 10; 6, 10, 12 ];");
/* Retrieve the variable foo */
ScilabType foo = sci.get("foo");
/* Display the variable */
System.out.println("Representation of : "+ foo);
/* Get the data and retrieve the 2,2 value */
double[][] aReal = ((ScilabDouble)foo).getRealPart();
System.out.println("foo[1,1] = " + aReal[1][1]);
/* Change the value of 2,2 */
aReal[1][1] = Math.PI;
/* Create a new variable */
ScilabDouble bar = new ScilabDouble(aReal);
/* Send it to Scilab */
sci.put("bar",bar);
/* Display it through Scilab */
sci.exec("disp(bar)");
sci.close();
} else {
System.out.println("Could not start Scilab ");
}
/* Can be improved by other exceptions: AlreadyRunningException,
* InitializationException, UndefinedVariableException,
* UnknownTypeException, etc
*/
} catch (org.scilab.modules.javasci.JavasciException e) {
System.err.println("An exception occurred: " +
e.getLocalizedMessage());
}
}
}
Pourtant le fichier est bien compilé et délivre un fichier jar ( je peux
éxecuter le fichier en ligne de commande en me donnant le résultat attendu).
1 - Pourquoi NetBeans n'affiche rien sur la console et que dois-je
faire?
2 - Y a-t-il un document plus récent concernant les configurations
requises pour NetBeans ou Eclipse?
Versions utilisées:
- SCILAB 5.4.0
- NetBeans 6.5 RC2
- JRE 1.7
Merci d'avance pour votre aide,
Cordialement,
.
-------------- section suivante --------------
Une pièce jointe HTML a été nettoyée...
URL: <https://lists.scilab.org/pipermail/users-fr/attachments/20130130/caa43ddb/attachment.htm>
Plus d'informations sur la liste de diffusion users-fr