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 :

Envoi de la commande enter par Telnet


Sujet :

Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Homme Profil pro
    developpeur
    Inscrit en
    Avril 2012
    Messages
    30
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Aube (Champagne Ardenne)

    Informations professionnelles :
    Activité : developpeur

    Informations forums :
    Inscription : Avril 2012
    Messages : 30
    Par défaut Envoi de la commande enter par Telnet
    Bonsoir,

    j'utilise la classe org.apache.commons.net.telnet pour la connexion telnet.

    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
     
    class telnet_codec
    {
    private TelnetClient telnet = new TelnetClient();
    private InputStream in;
    private PrintStream out;
    private String prompt1 = "<0>";
    private String prompt = "->";
     
    	public telnet_codec(String server, String password) 
    	{
    	try 
    	{
    		telnet.connect(server, 23);
    		in = telnet.getInputStream();
    		out = new PrintStream(telnet.getOutputStream());
    		readUntil("Password: ");
    		write(password);
    		}
     
    		catch(Exception e) 
    		{
    			e.printStackTrace();
    		}
    	}
     
    	public String readUntil(String pattern)
    	{
    		try
    		{
    			char lastChar = pattern.charAt(pattern.length() - 1);
    			StringBuffer sb = new StringBuffer();
    			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)
    		{
    			e.printStackTrace();
    		}
    		return null;
    	}
     
    	public void write(String value)
    	{
    		try
    		{
    			out.println(value);
    			out.flush();
    			System.out.println(value);
    		}
    		catch(Exception e)
    		{
    			e.printStackTrace();
    		}
    	}
     
    	public String sendEnter (String info)
    	{
    		try
    		{
    			readUntil(prompt1);
    			write("\n");
    			return readUntil(prompt);
    		}
    		catch(Exception e) 
    		{
    			e.printStackTrace();
    		}
    	return null
    	}
     
    	public String sendCommand(String prompt, String command) 
    	{
    		try
    		{
    			readUntil(prompt);
    			write(command);
    			return readUntil(prompt);
    		}
    		catch(Exception e)
    		{
    			e.printStackTrace();
    		}
    	return null;
    	}
     
    	public void disconnect()
    	{
    		try
    		{
    			telnet.disconnect();
    		}
     
    		catch(Exception e)
    		{
    			e.printStackTrace();
    		}
    	}
    }
    Je dois envoyer la touche ENTER, pour obtenir le prompt d'envoi de commande.

    J'utilise la recherche de <0> afin d'envoyer ENTER pour obtenir le prompt ->.

    Mon problème je ne trouve pas comment envoyer la commande ENTER par telnet.

    Merci de votre aide

  2. #2
    Membre averti
    Homme Profil pro
    developpeur
    Inscrit en
    Avril 2012
    Messages
    30
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Aube (Champagne Ardenne)

    Informations professionnelles :
    Activité : developpeur

    Informations forums :
    Inscription : Avril 2012
    Messages : 30
    Par défaut
    Bonjour,

    je pensais faire un
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    write.keyPress(13);
    Cela m'affiche qu'il ne connait pas le symbol

    write.

    Merci de votre aide

  3. #3
    Membre Expert
    Inscrit en
    Mai 2006
    Messages
    1 364
    Détails du profil
    Informations forums :
    Inscription : Mai 2006
    Messages : 1 364
    Par défaut
    Citation Envoyé par andarius40 Voir le message
    Cela m'affiche qu'il ne connait pas le symbol

    write.
    Dans le code posté, write est une fonction, pas un objet. On ne peut donc pas faire de write.XXX();

    Et d'apres le code posté, je dirais que pour envoyer un enter, il suffit d'envoyer une chaine vide (c'est à dire write("")) puisque la fonction write fait un println qui genere le retour chariot tout seul...

  4. #4
    Membre averti
    Homme Profil pro
    developpeur
    Inscrit en
    Avril 2012
    Messages
    30
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Aube (Champagne Ardenne)

    Informations professionnelles :
    Activité : developpeur

    Informations forums :
    Inscription : Avril 2012
    Messages : 30
    Par défaut
    Bonjour,

    Cela ne fonctionne pas, cela n'affiche rien sur le prompt.

    Apres ma connexion Telnet, j'ai des lignes d'information qui défilent, commencant par <0>.

    Pour lancer une commande via un client telnet standard (putty) j'appui sur entrer le prompt -> apparait et la je peux écrire ma commande.

    Donc j'aimerai capturer <0> puis envoyer la touche ENTER, capturer -> puis envoyer ma commande.

    Merci de m'aider

  5. #5
    Modérateur
    Avatar de wax78
    Homme Profil pro
    R&D - Palefrenier programmeur
    Inscrit en
    Août 2006
    Messages
    4 098
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 44
    Localisation : Belgique

    Informations professionnelles :
    Activité : R&D - Palefrenier programmeur
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Août 2006
    Messages : 4 098
    Par défaut
    Je ne comprends pas trop, d'ou vient ce <0> ... jamais vu ca jusque la moi ?
    (Les "ça ne marche pas", même écrits sans faute(s), vous porteront discrédit ad vitam æternam et malheur pendant 7 ans)

    N'oubliez pas de consulter les FAQ Java et les cours et tutoriels Java

  6. #6
    Membre averti
    Homme Profil pro
    developpeur
    Inscrit en
    Avril 2012
    Messages
    30
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Aube (Champagne Ardenne)

    Informations professionnelles :
    Activité : developpeur

    Informations forums :
    Inscription : Avril 2012
    Messages : 30
    Par défaut
    bonjour j'ai trouvé l

    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
    class telnet_codec
    	{
    		private TelnetClient telnet = new TelnetClient();
    		private InputStream in;
    		private PrintStream out;
    		private String prompt1 = "<0>";
    		private String prompt = "->";
     
     
    		public telnet_codec(String server, String password) 
    		{
    			try 
    			{
    				telnet.connect(server, 23);
     
    				in = telnet.getInputStream();
    				out = new PrintStream(telnet.getOutputStream());
     
    				readUntil("Password: ");
    				write(password);
     
    			}
     
    			catch(Exception e) 
    			{
    				e.printStackTrace();
    			}
    		}
     
    		public String readUntil(String pattern)
    		{
     
    			try
    			{
    				char lastChar = pattern.charAt(pattern.length() - 1);
    				StringBuffer sb = new StringBuffer();
    				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)
    			{
    				e.printStackTrace();
    			}
    			return null;
    		}
     
     
    		public void write(String value)
    		{
    			try
    			{
    				out.println(value);
    				out.flush();
    				System.out.println(value);
    			}
    			catch(Exception e)
    			{
    				e.printStackTrace();
    			}
    		}
     
    		public String sendEnter ()
    		{
    			try
    			{
    				write ("");
    				return readUntil(prompt);
    			}
    			catch(Exception e) 
    			{
    				e.printStackTrace();
    			}
    		return null;
    		}
     
    		public String sendCommand(String command) 
    		{
    			try
    			{
    				write(command);
    				return readUntil(prompt1);
    			}
    			catch(Exception e)
    			{
    				e.printStackTrace();
    			}
    		return null;
    		}
    	}

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

Discussions similaires

  1. Lancer une commande par telnet
    Par Mounr dans le forum Langage
    Réponses: 3
    Dernier message: 22/03/2009, 20h08
  2. [Système] lancer command unix par php
    Par naourass dans le forum Langage
    Réponses: 3
    Dernier message: 05/10/2005, 14h07
  3. [Débutant(e)] Ou trouver la commande lancée par eclipse
    Par Emdis dans le forum Eclipse Java
    Réponses: 2
    Dernier message: 25/11/2004, 11h00
  4. [PHP-JS] Envoi de variable sans passer par un submit
    Par adilou1981 dans le forum Langage
    Réponses: 4
    Dernier message: 15/11/2004, 19h21
  5. Shutdown par telnet
    Par jere dans le forum Développement
    Réponses: 2
    Dernier message: 03/06/2004, 11h34

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