Bonjour,<br><br>   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<br>
+ Netbeans 6-5" publié le 04/04/09 par P.Perrichon".<br><br>Voici mon code:<br><br>import org.scilab.modules.javasci.Scilab;<br>import org.scilab.modules.types.ScilabType;<br>import org.scilab.modules.types.ScilabDouble;<br>
/**<br> *<br> *<br> */<br>public class Example {<br><br>    /**<br>     * @param args the command line arguments<br>     */<br>    public static void main(String[] args) {<br>//         TODO code application logic here<br>
        try {<br>            Scilab sci = new Scilab();<br>            <br>            if (sci.open()) { // le traitement s'arrète là!!<br><br><br>            /* Send a Scilab instruction */<br>            sci.exec("foo = [ 2, 4, 6; 4, 0, 10; 6, 10, 12 ];");<br>
<br>            /* Retrieve the variable foo */<br>            ScilabType foo = sci.get("foo");<br><br>            /* Display the variable */<br>            System.out.println("Representation of  : "+ foo);<br>
           <br>            /* Get the data and retrieve the 2,2 value */<br>            double[][] aReal = ((ScilabDouble)foo).getRealPart();<br>            System.out.println("foo[1,1] = " + aReal[1][1]);<br><br>
            /* Change the value of 2,2 */<br>            aReal[1][1] = Math.PI;<br><br>           /* Create a new variable */<br>            ScilabDouble bar = new ScilabDouble(aReal);<br><br>           /* Send it to Scilab */<br>
            sci.put("bar",bar);<br><br>          /* Display it through Scilab */<br>            sci.exec("disp(bar)");<br><br>            sci.close();<br>            } else {<br>            System.out.println("Could not start Scilab ");<br>
            }<br><br><br>            /* Can be improved by other exceptions: AlreadyRunningException,<br>            * InitializationException, UndefinedVariableException,<br>            * UnknownTypeException, etc<br>            */<br>
            } catch (org.scilab.modules.javasci.JavasciException e) {<br>            System.err.println("An exception occurred: " + e.getLocalizedMessage());<br>            }<br><br>    }<br><br>}<br>  <br>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).<br>
     1 - Pourquoi NetBeans n'affiche rien sur la console et que dois-je faire? <br>     2 - Y a-t-il un document plus récent concernant les configurations requises pour NetBeans ou Eclipse?<br><br>Versions utilisées:<br>
       - SCILAB 5.4.0<br>       - NetBeans 6.5 RC2<br>       - JRE 1.7<br><br><br> Merci d'avance pour votre aide,<br> Cordialement,<br>  <br>.<br>