本文整理汇总了C++中QDataStream::writeBytes方法的典型用法代码示例。如果您正苦于以下问题:C++ QDataStream::writeBytes方法的具体用法?C++ QDataStream::writeBytes怎么用?C++ QDataStream::writeBytes使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QDataStream
的用法示例。
在下文中一共展示了QDataStream::writeBytes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: insertFile
int PackageDialog::insertFile(const QString& FileName, QFile& File,
QDataStream& Stream)
{
QByteArray FileContent;
if(!File.open(QIODevice::ReadOnly)) {
QMessageBox::critical(this, tr("Error"),
tr("Cannot open \"%1\"!").arg(FileName));
return -1;
}
Q_ULONG Count = File.size();
char *p = (char*)malloc(Count+FileName.length()+2);
strcpy(p, FileName.latin1());
File.readBlock(p+FileName.length()+1, Count);
File.close();
Count += FileName.length()+1;
FileContent = qCompress((unsigned char*)p, Count);
free(p);
Stream.writeBytes(FileContent.data(), FileContent.size());
return 0;
}
示例2: send
void KMessageSocket::send (const QByteArray &msg)
{
QDataStream str (mSocket);
str << quint8 ('M'); // magic number for begin of message
str.writeBytes (msg.data(), msg.size()); // writes the length (as quint32) and the data
}