如何在Qt C ++中使用QFtp :: put上传文件?

时间:2011-12-19 15:59:12

标签: c++ qt qt4

我想使用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);
}

但是,我没有得到任何迹象表明正在调用插槽。我没有弹出任何消息框。我在这里做错了什么?

2 个答案:

答案 0 :(得分:2)

你看到的代码片段看起来是正确的(虽然没有尝试过编译)所以问题可能就在那个片段之外的某个地方。

在回答另一个答案时,需要捕获信号以使代码执行。调用put,close等会将这些命令排队,当它们准备就绪时它们将运行无论是否连接到信号。请参阅docs中的“详细说明”。话虽如此,我强烈建议您连接信号,因为这样可以获得用户反馈和调试信息。

至于为什么你当前的代码不起作用,我会问的最常见的问题是:

  1. 包含QFtp对象的类是否扩展了QObject?
  2. 您的头文件是否包含Q_OBJECT宏?
  3. 您是否因为扩展QObject或添加Q_OBJECT宏而重新运行qmake?
  4. 您的控制台上是否有“信号/插槽不存在”错误?这通常意味着你的信号/插槽名称有拼写错误。
  5. 您的应用程序是否有事件循环? QFtp requires这是因为它将其调用排队异步发生。此外,所有信号和插槽都需要事件循环才能工作。您可以通过在QApplication上调用exec来启动事件循环,该应用程序通常位于main()。
  6. 您是否有阻止ftp传输的防火墙规则?您可能需要使用QFtp :: Passive。
  7. 这些是我能想到的基本问题。祝你好运!

答案 1 :(得分:1)

QFtp类以异步方式传输数据。因此,顺序调用connecToHost,put,error,currentCommand和close函数将永远不会实际执行任何命令。你需要做的是编写一个类,以便你可以使用信号和插槽。在开始传输后捕获信号是关键。 QFtp详细说明中列出的示例为您的问题/

提供了一些说明