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 :

Conception d'interface graphique pour logiciel de scan de ports


Sujet :

Java

  1. #1
    Nouveau Candidat au Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Juin 2011
    Messages
    1
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Juin 2011
    Messages : 1
    Points : 1
    Points
    1
    Par défaut Conception d'interface graphique pour logiciel de scan de ports
    Cet exemple recherche un port sur l'ordinateur
    Note: pour lancer la recherche saisir @ ip ou nom de l'ordinateur uniquement, comme dans l'image :



    Et les résultats seront affichés de cette façon :




    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
     
    import java.net.*; 
    import java.io.IOException;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
     
    public class PScanner {
      public static void main(String[] args) {
        InetAddress ia = null;
        String host = null;
        try {
          host = JOptionPane.showInputDialog("Entrer le nom du machine a scanner:\n example: x.x.x.x");
          if(host!=null) {
            ia = InetAddress.getByName(host); scan(ia);
          }
        }
        catch (UnknownHostException e) {
          System.err.println(e );
        }
        System.out.println("kingslouma");
        //System.exit(0);
      }
      public static void scan(final InetAddress remote) {
        //variables for menu bar
        int port=0; 
        String hostname = remote.getHostName();
        for ( port = 0; port < 65536; port++) {
          try {
            Socket s = new Socket(remote,port); 
            System.out.println("Serveur à l'écoute sur le port " + port+ " de " + hostname); 
            s.close();
          } 
          catch (IOException ex) {
            // The remote host is not listening on this port
           System.out.println("Serveur n'est pas a l'écoute sur le port " + port+ " de " + hostname);
          }
        }
      }
    }
    je souhaiterai l'afficher de cette façon :




    NB : c'est pour une utilisation sur un réseau local.

    Merci d'avance

  2. #2
    Membre confirmé Avatar de javaNavCha
    Homme Profil pro
    EKG Group
    Inscrit en
    Juillet 2009
    Messages
    311
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 41
    Localisation : Tunisie

    Informations professionnelles :
    Activité : EKG Group
    Secteur : Industrie

    Informations forums :
    Inscription : Juillet 2009
    Messages : 311
    Points : 631
    Points
    631
    Par défaut
    C'est quoi la question ?

    O_°

Discussions similaires

  1. Réponses: 1
    Dernier message: 04/05/2012, 15h03
  2. Interface graphique pour administrer un annuaire LDAP???
    Par SnipCool dans le forum Applications et environnements graphiques
    Réponses: 2
    Dernier message: 09/06/2005, 18h40
  3. Interface graphique pour utilisateur
    Par Missvan dans le forum PostgreSQL
    Réponses: 10
    Dernier message: 14/02/2005, 10h56
  4. [FEDORA] Interface graphique pour partager connexion
    Par booboo dans le forum RedHat / CentOS / Fedora
    Réponses: 2
    Dernier message: 15/06/2004, 14h14
  5. [Kylix] Interface graphique pour lognes de commande linux
    Par lecharcutierdelinux dans le forum EDI
    Réponses: 6
    Dernier message: 29/08/2003, 11h20

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