IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Java Discussion :

Le processus run ne s'arrete pas automatiquement


Sujet :

Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre éclairé
    Femme Profil pro
    Étudiant
    Inscrit en
    Avril 2013
    Messages
    286
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Avril 2013
    Messages : 286
    Par défaut Le processus run ne s'arrete pas automatiquement
    bonsoir

    j'ai un problème lorsque j’exécute mon projet sous netbeans il me donne le résultat correct et tout mais le processus en bas de la page reste en mode run
    c'est à dire je dois fermer le processus sinon il reste en cours d’exécution
    je sais pas c'est quoi le problème
    voilà la fonction où je pense il y a le problème parce que j'ai plein de boucle do while

    Merci d'avoir m'aider

  2. #2
    Rédacteur/Modérateur
    Avatar de andry.aime
    Homme Profil pro
    Inscrit en
    Septembre 2007
    Messages
    8 391
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Ile Maurice

    Informations forums :
    Inscription : Septembre 2007
    Messages : 8 391
    Par défaut
    Bonsoir,

    Tu as oublié de poster ton code.

    A+.

  3. #3
    Membre éclairé
    Femme Profil pro
    Étudiant
    Inscrit en
    Avril 2013
    Messages
    286
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Avril 2013
    Messages : 286
    Par défaut
    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
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
     
    public class Projet {
    ArrayList<String> myData=null;
        private TelnetClient telnet = new TelnetClient();
        private InputStream in;
        private PrintStream out;
        static Statement st;
        static ResultSet rs;
        public static Connection con;
        private char prompt = '$';
        private static String command1="terminal length 0";
        private static String command2="show interfaces desc ";
     
    public Projet() {
        myData=new ArrayList<String>();   
      }
     
        public String Traitement(String server, String user, String password) {
            JFrame controllingFrame = null;
            try {
                // Connect to the specified server
                try {
                    telnet.setConnectTimeout(100);
                    telnet.connect(server, 23);
                } catch (UnknownHostException e1) {
                    return "Failure  ";
                } catch (SocketTimeoutException e) {
                    return "Failure ";
                } catch (NoRouteToHostException e) {
                    return "Failure ";
                } catch (ConnectException e) {
                    return "Failure ";
                }
     
                in = telnet.getInputStream();
                out = new PrintStream(telnet.getOutputStream());
                readUntil("Username: ");
                write(user);
                readUntil("Password: ");
                writePass(password);
                write("en");
                readUntil("Password: ");
                writePass(password);
                write(command1);
                write(command2);  // la commande: show int description
                //fichierUntil(server);
                char ch;
                StringBuffer sa = new StringBuffer();
                do {
                    ch = (char) in.read();
                    sa.append(ch);
     
           } while (ch != '>' && ch != '#' && !sa.toString().contains("Username: ")
                        && !sa.toString().contains("Password: "));
     
                readUntil("Username: ");
                write(user);
                readUntil("Password: ");
                writePass(password);
     
                sa = new StringBuffer();
                do {
                    ch = (char) in.read();
                    sa.append(ch);
     
                } while (ch != '>' && ch != '#' && ch != '%');
     
                if (ch == '%') {
                    in.close();
                    out.close();
                    telnet.disconnect();
                    return "tacacs";
                } else if (ch == '>') {
                    write("en");
                    readUntil("Password: ");
                    writePass(password);
                     write(command1);
                     write(command2);
                    //fichierUntil(server); 
     
                    in.close();
                    out.close();
                    telnet.disconnect();
                    return "Succes";
                }else {
                    in.close();
                    out.close();
                    telnet.disconnect();
                    return "no Login";
                }
     
            } catch (Exception e) {
                e.printStackTrace();
            }
            return null;
        }
    public String fichierUntil( String server) throws IOException{
    	 myData=new ArrayList<String>();
    	 StringBuffer sb = new StringBuffer();
    	 char ch;
     
             try {
                 //readUntil( command1);
                 readUntil( command2);
                   do{
                     ch = (char)in.read();
                     sb.append(ch);
     
                  }while(!(sb.toString().contains("Description")));
     
                while(true){
     
                 sb = new StringBuffer();
     
                 do{               
                  ch = ( char )in.read();
                  sb.append( ch );
                 }while ( ch!=32 && ch!='#');
    if(sb.toString().contains("Fa") || sb.toString().contains("Vl") || sb.toString().contains("Gi")){
                 if(ch=='#'){
                     System.out.print(" END");
                     return "";              
                 }
                     myData.add(sb.toString());
                     System.out.print(sb);
     
                 }
                  do {
                  ch = ( char )in.read();
                 }while (ch!=13 && ch!=10 && ch!='#');
                 if(ch=='#'){
     
                     return "";
                 }              
     
                 }                
     
        } catch (IOException ex) {
               Logger.getLogger(Projet.class.getName()).log(Level.SEVERE, null, ex);
             }       
     
     return null;
     }
     
       public String readUntil( String pattern ) {
    try {
    char lastChar = pattern.charAt( pattern.length() - 1 );
    StringBuilder sb = new StringBuilder();
    boolean found = false;
    char ch = ( char )in.read();
    while( true ) {
    System.out.print( ch );
    sb.append( ch );
    if( ch == lastChar ) {
    if( sb.toString().endsWith( pattern ) ) {
    return sb.toString();
    }
    }
    ch = ( char )in.read();
    }
    }
    catch( Exception e ) {
    }
    return null;
    }
     
        public void write(String value) {
            try {
                out.println(value);
                out.flush();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
     
        public void write1(String value) {
            try {
                out.println(value);
                out.flush();
     
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
     
        public void writePass(String value) {
            try {
                out.println(value);
                out.flush();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    public String sendCommand( String command ) {
    try {
    write( command );
    return readUntil( prompt + " " );
    }
    catch( Exception e ) {
    }
    return null;
    }
        public void disconnect() {
            try {
                telnet.disconnect();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

    le problème est dans la fonction FichierUntil

  4. #4
    Membre expérimenté Avatar de hbennou
    Homme Profil pro
    Développeur Java
    Inscrit en
    Mai 2008
    Messages
    162
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2008
    Messages : 162
    Par défaut
    C'est normale car t'as une boucle infinie

  5. #5
    Membre éclairé
    Femme Profil pro
    Étudiant
    Inscrit en
    Avril 2013
    Messages
    286
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Avril 2013
    Messages : 286
    Par défaut
    oui mais lorsque j'enleve le while(true) il m'affiche just la premiere donnée
    et le process reste en mode run

  6. #6
    Membre expérimenté Avatar de hbennou
    Homme Profil pro
    Développeur Java
    Inscrit en
    Mai 2008
    Messages
    162
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2008
    Messages : 162
    Par défaut
    Mets dans chaque boucle un
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    system.out.println("boucle 1");
    et tu sauras à quel niveau il ne s'arrete pas

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. probleme breakpoint ne s arrete pas
    Par benoit70 dans le forum MFC
    Réponses: 4
    Dernier message: 16/03/2005, 11h24
  2. Halt - la machine ne s'arrete pas
    Par Slein dans le forum Administration système
    Réponses: 3
    Dernier message: 01/06/2004, 19h59
  3. [Composant] Le canvas ne se redessine pas automatiquement
    Par Rodrigue dans le forum C++Builder
    Réponses: 2
    Dernier message: 31/05/2004, 23h18

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo