Qt如何实现http服务
发表于:2024-11-25 作者:千家信息网编辑
千家信息网最后更新 2024年11月25日,这篇文章将为大家详细讲解有关Qt如何实现http服务,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。先看执行结果:Qt HttpServer左边是开启的Qt Http
千家信息网最后更新 2024年11月25日Qt如何实现http服务
这篇文章将为大家详细讲解有关Qt如何实现http服务,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
先看执行结果:
左边是开启的Qt Http服务,监控服务端口,及接收客户端请求;右侧是浏览器访问服务。
下面是具体代码:
HttpDemo.pro
QT += core
QT += network
QT -= gui
CONFIG += c++11 console
CONFIG -= app_bundle
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
main.cpp \
myhttpserver.cpp
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
HEADERS += \
myhttpserver.h
myhttpserver.h
#ifndef MYHTTPSERVER_H
#define MYHTTPSERVER_H
#include
#include
#include
class MyHttpServer : public QObject
{
Q_OBJECT
public:
explicit MyHttpServer(QObject *parent = nullptr);
~MyHttpServer();
QTcpSocket *socket;
public slots:
void connection();
private:
qint64 bytesAvailable() const;
QTcpServer *server;
signals:
public slots:
};
#endif // MYHTTPSERVER_H
main.cpp
#include
#include "myhttpserver.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
MyHttpServer server;
return a.exec();
}
myhttpserver.cpp
#include "myhttpserver.h"
#include
MyHttpServer::MyHttpServer(QObject *parent) : QObject(parent)
{
server = new QTcpServer(this);
connect(server, &QTcpServer::newConnection, this, &MyHttpServer::connection);
if(!server->listen(QHostAddress::Any, 8080))
{
qDebug() << "\nWeb服务未启动";
}
else
{
qDebug() << "\nWeb服务在端口8080等待客户端连接";
}
}
void MyHttpServer::connection()
{
socket = server->nextPendingConnection();
while (!(socket->waitForReadyRead(100))); //等待从浏览器读取数据
char webBrowerRXData[1000];
int sv = socket->read(webBrowerRXData, 1000);
qDebug() << "正在从浏览器读取数据=" << QString(webBrowerRXData);
socket->write("HTTP/1.1 200 OK\r\n"); // \r needs to be before \n
socket->write("Content-Type: text/html\r\n");
socket->write("Connection: close\r\n");
socket->write("Refresh: 1\r\n\r\n"); //refreshes web brower every second.Request
socket->write(""
""
""
""
"测试Qt HttpServer "
" "
"已连接秒数:");
QByteArray str;
static qint16 count; //用于在浏览器上显示的统计数字
str.setNum(count++);
socket->write(str);
socket->write(""
"");
socket->flush();
connect(socket, &QTcpSocket::disconnected, socket, &QTcpSocket::deleteLater);
socket->disconnectFromHost();
}
MyHttpServer::~MyHttpServer()
{
socket->close();
}
关于"Qt如何实现http服务"这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
服务
浏览器
浏览
篇文章
客户
客户端
数据
更多
端口
不错
实用
代码
内容
右侧
数字
文章
正在
知识
结果
统计数字
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
河源软件开发要多久
国家适应网络安全保护制度
数据库重新分区
第四届全国高校网络安全
高青计划软件开发定制
山东省服务器代理服务器
中国 科技 互联网泡沫
怎么删除ktv服务器的歌曲
数据库端口是用什么协议
北京锐角网络技术有限公司
充分认识网络安全的重要性
美国免投诉服务器
网络安全认识100字
网络技术员排名
服务器的设备功率
计算机软件开发可行性分析
滴滴打车网站管理数据库
租用服务器流程
masql修改数据库语法
国外小学生网络安全
免费肉鸡服务器
ncbi连接哪些数据库
保定检察机关网络安全培训会
海康服务器系统安装
数据库表单中的主键和外键
北京密安网络技术股份
常用mqtt服务器对比
梦幻西游2008服务器最火吗
服务器数据定时保存的bug
南京软件开发技术经理招聘