1

为此,我正在使用带有 QT4 的 C++。当我尝试发送大型 html 文件(在本例中为 8kb)时,发送和接收的过程运行良好。但是收到的文件在 html 文件的每个字符之间都有空格。这里是一个例子,文件是这样发送的:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">a</p></body></html>

它已收到,如下所示:

  ¼ < ! D O C T Y P E   H T M L   P U B L I C   " - / / W 3 C / / D T D   H T M L   4 . 0 / / E N "   " h t t p : / / w w w . w 3 . o r g / T R / R E C - h t m l 4 0 / s t r i c t . d t d " > 
 < h t m l > < h e a d > < m e t a   n a m e = " q r i c h t e x t "   c o n t e n t = " 1 "   / > < s t y l e   t y p e = " t e x t / c s s " > 
 p ,   l i   {   w h i t e - s p a c e :   p r e - w r a p ;   } 
 < / s t y l e > < / h e a d > < b o d y   s t y l e = "   f o n t - f a m i l y : ' M S   S h e l l   D l g   2 ' ;   f o n t - s i z e : 8 . 2 5 p t ;   f o n t - w e i g h t : 4 0 0 ;   f o n t - s t y l e : n o r m a l ; " > 
 < p   s t y l e = " - q t - p a r a g r a p h - t y p e : e m p t y ;   m a r g i n - t o p : 0 p x ;   m a r g i n - b o t t o m : 0 p x ;   m a r g i n - l e f t : 0 p x ;   m a r g i n - r i g h t : 0 p x ;   - q t - b l o c k - i n d e n t : 0 ;   t e x t - i n d e n t : 0 p x ; " > < / p > < / b o d y > < / h t m l >

我用于发送和接收的代码:

发送代码:qDebug() << "已连接。发送文件到服务器"; QString text = ui->QuestHtmlText->toPlainText();

if(text.length() < 1024)
{
    QByteArray block;
    QDataStream out(&block, QIODevice::WriteOnly);
    out << quint16(0) << QUESTION_HTML;
    out << text;
    out.device()->seek(0);
    out << quint16(block.size() - sizeof(quint16));
    qDebug() << "Block size: " << block.size();
    socket.write(block);
    return;
}

for(int i = 0; i < text.length(); i+=1024)
{
    QByteArray block;
    QDataStream out(&block, QIODevice::WriteOnly);
    out << quint16(0) << QUESTION_HTML;
    if((text.length() - i) > 1024)
        out << text.mid(i, i+1024);
    else
        out << text.right(1024 - i);
    out.device()->seek(0);
    out << quint16(block.size() - sizeof(quint16));
    qDebug() << "Block size: " << block.size();
    socket.write(block);
}

接收代码:

qDebug() << "Writing File";
QDataStream in(this);
QString temp = "Teste.html", text;
QFile myFile(".//Questions//" + temp);
myFile.open(QIODevice::WriteOnly);
QDataStream out(&myFile);
while(!in.atEnd())
{
    in >> text;
    out << text;
}
4

3 回答 3

3

@Eugen 我怀疑 quint16 要么根本没有写入,要么位于文件末尾。参见下文。

@Patrick不要仅仅因为您觉得服务不够快而重新发布。Stackowerflow 不是热线电话。

您在文件中返回的内容不是您的原始文本,而是 QString 序列化形式,这毫不奇怪是 UTF-16。如果您想要返回文本,请将输入 QDataStream 读回 QString 并将其保存到文件中。

虽然在数据前面加上一个长度通常是个好主意,但对于 QString >> QDataStream 来说绝对是多余的。在这里这里阅读一些东西。此外,您开发了一种令人难以置信的令人困惑的方式,我怀疑它什么都不做。QByteArray 没有实现 QIODevice (实际上,为什么应该这样做)所以你的 out.device()->seek() 是一个基本的虚拟实现,为空并且只返回 true。如果在序列化转储文件的末尾找到您的长度“标题”,我不会感到惊讶。

编辑:我认为您的 html 传输可能只有通过完全忽略混淆的 quint 操作并使用outQTextStream 而不是 QByteStream 才能开始正常工作。

于 2012-06-10T21:17:41.783 回答
2

I bet there are not spaces between characters (but 0s) & you get the extra chars due to your use of quint16.

于 2012-06-05T01:05:23.527 回答
0

我解决了将其写入文件并将此文件获取到 QByteArray 并将 QbyteArray 完全发送到套接字的问题。

于 2012-06-18T17:26:57.620 回答