A small client-server example
This example shows how two programs can communicate using sockets. Two simple example programs are provided, a client program and a server program. Both use the QSocket class, and the server also uses QServerSocket class. The server listens on port number 4242 and accepts incoming connections. It sends back every line it receives from the client, prepended with the line number. The client tries to connect to the server on the host specified on the command line or to localhost if no command line arguments are specified. You can send single lines to the server.
Implementation server (server.cpp):
/**************************************************************************** ** $Id: $ ** ** Copyright (C) 1992-2000 Trolltech AS. All rights reserved. ** ** This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #include <qsocket.h> #include <qserversocket.h> #include <qapplication.h> #include <qvbox.h> #include <qtextview.h> #include <qlabel.h> #include <qpushbutton.h> #include <qtextstream.h> #include <stdlib.h> /* The ClientSocket class provides a socket that is connected with a client. For every client that connects to the server, the server creates a new instance of this class. */ class ClientSocket : public QSocket { Q_OBJECT public: ClientSocket( int sock, QObject *parent=0, const char *name=0 ) : QSocket( parent, name ) { line = 0; connect( this, SIGNAL(readyRead()), SLOT(readClient()) ); connect( this, SIGNAL(connectionClosed()), SLOT(deleteLater()) ); setSocket( sock ); } ~ClientSocket() { } signals: void logText( const QString& ); private slots: void readClient() { QTextStream ts( this ); while ( canReadLine() ) {
Implementation client (client.cpp):
/**************************************************************************** ** $Id: $ ** ** Copyright (C) 1992-2000 Trolltech AS. All rights reserved. ** ** This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #include <qsocket.h> #include <qapplication.h> #include <qvbox.h> #include <qhbox.h> #include <qtextview.h> #include <qlineedit.h> #include <qlabel.h> #include <qpushbutton.h> #include <qtextstream.h> class Client : public QVBox { Q_OBJECT public: Client( const QString &host, Q_UINT16 port ) { // GUI layout infoText = new QTextView( this ); QHBox *hb = new QHBox( this ); inputText = new QLineEdit( hb ); QPushButton *send = new QPushButton( tr("Send") , hb ); QPushButton *close = new QPushButton( tr("Close connection") , this ); QPushButton *quit = new QPushButton( tr("Quit") , this ); See also Network Examples. |
Publicité
Best OfActualités les plus luesSemaine
Mois
Année
Le blog Digia au hasardDéploiement d'applications Qt Commercial sur les tablettes Windows 8Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.
CommunautéRessources
Liens utilesContact
Qt dans le magazine |
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 3.2 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com