qt 网络管理器 获取
我想下载行编辑小部件中输入的网址。
我无法让它工作,有人可以给我一个简短的代码片段,可以将文件的值放入 QString 中吗?
void imdb::on_imdbGetButton_clicked()
{
Qstring link1 = ui->lineEdit2->text();
// QString link1 is the url to be downloaded.
}
我已经添加了所需的头文件..
谢谢..
I want to download the url entered in the line edit widget.
I am not able to get it working , can some one please give me a short code snippet which can put the values of the file to a QString ?
void imdb::on_imdbGetButton_clicked()
{
Qstring link1 = ui->lineEdit2->text();
// QString link1 is the url to be downloaded.
}
I have added , the required header files..
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜您正在尝试通过 http 下载文件。您可以执行以下操作:
QT += network
manager->get (QNetworkRequest("file_url"));
下面是一个小例子。下载将在 MainForm 类的按钮单击中开始:
mainwindow.h:
mainwindow.cpp:
希望这有帮助,问候
I guess you're trying to download a file via http. Here's what you could do:
QT += network
manager->get(QNetworkRequest("file_url"));
Below is a small example. Download will start in the button click of the MainForm class:
mainwindow.h:
mainwindow.cpp:
hope this helps, regards