我想使用QFtp将文本文件上传到FTP服务器。
这是我的代码:
QFile *file = new QFile("test.txt");
QFtp *ftp = new QFtp();
if(file->open(QIODevice::ReadWrite)) {
ftp->setTransferMode(QFtp::Active);
ftp->connectToHost(server);
ftp->login(name, password);
ftp->put(file, "test.txt");
ftp->close();
}
执行此代码后,我的ftp服务器上看不到任何内容。当我查看QFtp :: put的文档时,我看到第一个参数应该是QIODevice或QByteArray。我该怎么做?
编辑:
所以我现在有了这个代码:
//ftp.cpp
QFile *file = new QFile("test.txt");
QFtp *ftp = new QFtp();
this->connect(ftp, SIGNAL(commandStarted(int)), SLOT(ftpCommandStarted(int)));
this->connect(ftp, SIGNAL(commandFinished(int, bool)), SLOT(ftpCommandFinished(int, bool)));
this->connect(ftp, SIGNAL(done(bool)), SLOT(ftpDone(bool)));
this->connect(ftp, SIGNAL(dataTransferProgress(qint64, qint64)), SLOT(ftpDataTransferProgress(qint64, qint64)));
this->connect(ftp, SIGNAL(stateChanged(int)), SLOT(ftpStateChanged(int)));
if(file->open(QIODevice::ReadWrite)) {
ftp->setTransferMode(QFtp::Active);
ftp->connectToHost(server);
ftp->login(name, password);
ftp->put(file, "test.txt");
ftp->close();
}
具有以下功能:
//ftp.h
void ftpCommandStarted(int id);
void ftpCommandFinished(int id, bool error);
void ftpDone(bool);
void ftpDataTransferProgress(qint64, qint64);
void ftpStateChanged(int);
//ftp.cpp
void EmailDialog::ftpCommandStarted(int id) {
this->messageBox("Command Started: " + QString::number(id));
}
void EmailDialog::ftpCommandFinished(int id, bool error) {
this->messageBox("Command Finished: " + QString::number(id) + " Error: " + (error ? "Error" : "No Error"));
}
void EmailDialog::ftpDone(bool error) {
this->messageBox("Done " + QString(error ? "Error" : "No Error"));
}
void EmailDialog::ftpDataTransferProgress(qint64 done, qint64 total) {
this->messageBox("Done: " + QString::number(done) + " Total: " + QString::number(total));
}
void EmailDialog::ftpStateChanged(int state) {
QString text;
switch (state) {
case 0:
text = "QFtp::Unconnected";
break;
case 1:
text = "QFtp::HostLookup";
break;
case 2:
text = "QFtp::Connecting";
break;
case 3:
text = "QFtp::Connected";
break;
case 4:
text = "QFtp::LoggingIn";
break;
case 5:
text = "QFtp::Closing";
break;
default:
text = "";
break;
}
this->messageBox(text);
}
但是,我没有得到任何迹象表明正在调用插槽。我没有弹出任何消息框。我在这里做错了什么?
答案 0 :(得分:2)
你看到的代码片段看起来是正确的(虽然没有尝试过编译)所以问题可能就在那个片段之外的某个地方。
在回答另一个答案时,不需要捕获信号以使代码执行。调用put,close等会将这些命令排队,当它们准备就绪时它们将运行无论是否连接到信号。请参阅docs中的“详细说明”。话虽如此,我强烈建议您连接信号,因为这样可以获得用户反馈和调试信息。
至于为什么你当前的代码不起作用,我会问的最常见的问题是:
这些是我能想到的基本问题。祝你好运!
答案 1 :(得分:1)
QFtp类以异步方式传输数据。因此,顺序调用connecToHost,put,error,currentCommand和close函数将永远不会实际执行任何命令。你需要做的是编写一个类,以便你可以使用信号和插槽。在开始传输后捕获信号是关键。 QFtp详细说明中列出的示例为您的问题/
提供了一些说明