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

  1. #1
    Membre régulier
    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
    Points : 76
    Points
    76
    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
    Points : 15 059
    Points
    15 059
    Par défaut
    Bonsoir,

    Tu as oublié de poster ton code.

    A+.

  3. #3
    Membre régulier
    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
    Points : 76
    Points
    76
    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 actif 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
    Points : 205
    Points
    205
    Par défaut
    C'est normale car t'as une boucle infinie

  5. #5
    Membre régulier
    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
    Points : 76
    Points
    76
    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 actif 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
    Points : 205
    Points
    205
    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

  7. #7
    Membre régulier
    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
    Points : 76
    Points
    76
    Par défaut
    peux tu m'indiquer où je dois inserer e system.out ??

  8. #8
    Modérateur

    Profil pro
    Inscrit en
    Septembre 2004
    Messages
    12 551
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2004
    Messages : 12 551
    Points : 21 608
    Points
    21 608
    Par défaut
    Hum. Et si tu cherchais un peu ?
    N'oubliez pas de consulter les FAQ Java et les cours et tutoriels Java

  9. #9
    Membre régulier
    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
    Points : 76
    Points
    76
    Par défaut
    ben j'ai fait le system.out sur les boucles çà marche bie mais lorque je fais un system sur le if(ch==#) c a dire s'il trouve le # la fin de l'affichage des données
    il n'affiche rien est c'est dans cette partie qu'il doit arrêter parce qu'il va trouver le # c'est à dire de taper une autre commande
    le résultat est correct il me donne toutes les données mais je sais pas pourquoi il n'arrete pas le precessus
    je sais pas quoi faire là aider moi slvp

  10. #10
    Membre averti Avatar de toutgrego
    Homme Profil pro
    Développeur Java
    Inscrit en
    Mai 2013
    Messages
    217
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Développeur Java
    Secteur : Conseil

    Informations forums :
    Inscription : Mai 2013
    Messages : 217
    Points : 350
    Points
    350
    Par défaut
    Salut,

    si ton n'affiche pas le Systeme.out c'est que le while du dessus n'a pas trouvé un '#' mais un espace.

    Ensuite je pense que ta deuxième boucle while :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    while (ch != 13 && ch != 10 && ch != '#')
    ne trouve aucun retour à la ligne ni aucun '#'.

    Sachant que les flux serveurs sont potentiellement infinis, ce que je te conseille si tu veux vraiment arrêter tes boucles c'est soit de mettre un compteur pour casser ta boucle,

    style :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    int count=0;
    do {
                        ch = (char) in.read();
                        count++;
                    } while (ch != 13 && ch != 10 && ch != '#' && count<10000);
    soit définir une séquence de fin de flux. Généralement -1 mais ça dépend trop de ton cas, je n'ai aucune visibilité avec le code que tu as donné.

    Tchao!
    F*ck it ! Do it !

  11. #11
    Membre régulier
    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
    Points : 76
    Points
    76
    Par défaut
    Merci bien , je vais essayer ,
    parce que lorsque je fais la boucle juste au niveau jusqu’à Description et que je demande de lire le résultat jusqu’à ce qu'il trouve le # ça marche bien mais lorsque j'ajoute les boucles pour les espaces et les sauts de ligne là où il s’arrête pas merci

  12. #12
    Membre régulier
    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
    Points : 76
    Points
    76
    Par défaut
    malheureusement il affiche jusqu'à ce qu'il trouve le # mais il s'arrete pas le problème est dans les if(ch==#)
    je sais pas quoi faire çà fait 2 jours que je me casse la tête avec un code qui est simple je pense

  13. #13
    Membre régulier
    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
    Points : 76
    Points
    76
    Par défaut
    voilà enfin il s'arrete mais il me donnes des erreurs en rouge et pas sur le code de la fonction '"fichierUntil" mais sur le ch=(char) in.read(ch); en haut
    dans la fonction Traitement:
    at java.io.BufferedInputStream.getBufIfOpen(BufferedInputStream.java:162)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:206)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:254)
    at projet.Projet.Traitement(Projet.java:84)

    voilà le code modifié:
    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
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
     
    public class Projet {
    ArrayList<String> myData=null;
    ArrayList<Integer> numData=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>();   
        numData=new ArrayList<Integer>();   
     
    }
     
        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());
                char ch;
                StringBuffer sb = new StringBuffer();
                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);
                do {
                    ch = (char) in.read();
                    sb.append(ch);
     
           } while (ch != '>' && ch != '#' && !sb.toString().contains("Username: ")
                        && !sb.toString().contains("Password: "));
     
                readUntil("Username: ");
                write(user);
                readUntil("Password: ");
                writePass(password);
     
                sb = new StringBuffer();
                do {
                    ch = (char) in.read();
                    sb.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( 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(".") || sb.toString().contains("Vl")) 
                       && !sb.toString().contains("AT")){    
                     System.out.print(sb);
                     myData.add(sb.toString());}
                 if(ch=='#')
                      {
                          in.close();
                          out.close();
                          return "";
                      }
     
                  /* String temp=sb.toString();
    				 myData.add(temp);
    				 if(temp.indexOf("Fa")>=0 || temp.indexOf("Gi")>=0){
    					int pos=temp.lastIndexOf(".")+1;
    					String data=temp.substring(pos,temp.length());
    					numData.add(Integer.parseInt(data));
    				}
    				else if(temp.indexOf("VL")>=0){
    					int pos=temp.indexOf("VL")+1;
    					String data=temp.substring(pos,temp.length());
    					numData.add(Integer.parseInt(data));
    				}*/
     
                  do {
                  ch = ( char )in.read();
     
                 }while (ch!=13 && ch!=10 && ch!='#' );
              }
         } catch (Exception e) {
          e.printStackTrace();
             }       
     
     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();
            }
        }

  14. #14
    Membre régulier
    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
    Points : 76
    Points
    76
    Par défaut
    Cava c'est bon le problème est résolue j'ai enlevé le code de la fonction fichieurUntil et je l'ai écris juste en haut dans la fonction Traitement et çà marche bien merci à vous tous

+ 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