代码拉取完成,页面将自动刷新
#ifndef HTTP_H
#define HTTP_H
#include <QString>
#include <QObject>
#include <QThread>
#include <QRunnable>
#include <QDebug>
//#define CURL_STATICLIB
#include "curllib\curl.h"
static QString crtPath;
class HTTP : public QObject, public QRunnable
{
Q_OBJECT
public:
HTTP(QString URL,QString Path,QObject *parent);
~HTTP();
int httpDownLoad(QString URL,QString Path);
static size_t write_data(void *ptr,
size_t size,
size_t nmemb,
void *stream
);
static int progress_callback(void *clientp,
curl_off_t dltotal,
curl_off_t dlnow, curl_off_t ultotal,
curl_off_t ulnow
);
protected:
void run();
private:
QString turl;
QString tdlpath;
void *tid;
FILE *pagefile;
CURL *handle;
private slots:
signals:
void tworkMessageBox(int tag,QString title,QString txt,bool modal = false);
void dldone();
};
void httpcrt();
QString conver(LONG64 l);
#endif // HTTP_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。