일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 잡담
- android SAF
- c언어
- 재귀함수
- 바이크
- Qt OpenGL
- 자료구조
- 자바
- FFI
- Qt4
- QT
- 윈도우7
- vuejs
- Qt 소켓프로그래밍
- 스타크래프트2
- 이륜차
- 정성하
- 스타2
- 양평역
- 마영전
- 안드로이드
- HTML
- 엑티브엑스
- 고속도로
- QTcpServer
- qt 설치
- 디자이어HD
- 알람프로그램
- 오토바이
- Java
- Today
- Total
목록Qt 소켓프로그래밍 (2)
프로그래밍과 잡담
자바 프로그램 레이아웃이 구려도 어쩔수 없음 자바는 거의 안쓰다가 심심해서 만든 거라서 ..;; 어쨌든 잘 된다. 다음에서는 자바로 만든 서버에 Qt 클라이언트가 접속하는걸 해보겠다. 접속에 대한 소스 try { socket = new Socket("127.0.0.1",5000); } catch (IOException e1) { e1.printStackTrace(); } if ( socket.isConnected()) { try { byte[] buffer = new byte[100]; inputStream = socket.getInputStream(); inputStream.read(buffer); String mes = new String(buffer); text.setText(mes); } catc..
#include #include #include class ReplyServer : public QTcpServer { Q_OBJECT public: ReplyServer(QObject *parent = 0); ~ReplyServer(); public slots: void makeConnection(); void send(); void disconnect(); private: QTcpSocket* tcp; }; ReplyServer::ReplyServer(QObject *parent) : QTcpServer(parent) { connect(this,SIGNAL(newConnection()), SLOT(makeConnection())); quint16 port = 5000; listen(QHostAddre..