- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要一个文件的校验和并找到this ,效果很好。现在我想更改此函数以获取指向之前已使用以下行打开的 QIODevice
的指针:
if (!file.open(QFile::ReadOnly | QFile::Text))
{
...
}
这作为设备传递给 read (reader.read(&file);
):
bool XmlReader::read(QIODevice* device)
{
QByteArray b = fileChecksum(device);
...
}
这是我对 fileChecksum 的实现。它返回一个校验和,但我永远陷入了一个循环,并且我收到了一个 xml 解析错误。我在这里做错了什么?
QByteArray XmlReader::fileChecksum(QIODevice* device)
{
if (device->isOpen())
{
QCryptographicHash hash(QCryptographicHash::Sha256);
if (hash.addData(device)) {
return hash.result();
}
}
return QByteArray();
}
编辑
在 QByteArray b = fileChecksum(device);
之后我这样做:
qDebug() << "Checksum: " << b.toHex();
which 继续打印,打印,打印...
解析错误是:premature end of document
这是垃圾。
希望这对您有所帮助。
最佳答案
由于最终导致错误的代码行不在 View 中,我只能推测发生了什么。
调用hash.addData(device)
的函数fileChecksum
读取QIODevice until the end并将光标位置保持在那里。
您之后很可能尝试从 QIODevice 读取,这将解释 premature end of documen
消息。
作为一种快速的解决方法,您可以尝试在之后重置位置
auto pos = device->pos();
QByteArray b = fileChecksum(device);
device->seek(pos);
但是如果可以的话,您应该只读取一次数据(也支持非随机访问的 QIODevices)。例如,您可以将结果存储在 QBuffer 中并将其用作 QIODevice。像这样:
bool XmlReader::read(QIODevice* device)
{
QByteArray contents = device->readAll();
QBuffer buffer(&contents);
device = &buffer;//you can also just use &buffer from here on out instead of overwriting the pointer
QByteArray b = fileChecksum(device);
device->reset();
/* ... further reads from device here */
}
关于c++ - 获取打开的 QIODevice 的校验和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40583840/
如何在 PHP 中生成 CRC-8 校验和? 最佳答案 function crcnifull ($dato, $byte) { static $PolyFull=0x8c; for ($i=0
我正在编写代码来使用 32 位无符号整数计算 CRC16。当尝试打印执行 CRC 操作的 XOR 函数的返回值时,它总是打印 0。我尝试了各种调试方法,例如打印语句,但是,我似乎无法弄清楚! 这是我的
ThinkPHP3.2.3验证码显示、刷新、校验 ,具体如下: 显示验证码 首先在Home/Controller下创建一个公共控制器PublicController
我想将自定义验证绑定(bind)到 TimePicker 自定义控件,但下面的代码显示“无法将内容添加到 TimePicker 的对象类型。”。
目录 Spring 校验(validator,JSR-303)实现 什么是JSR-303规范 与Spring MVC结合 实体类添加
导包和配置 导入 JSR 303 的包、hibernate valid 的包 ?
我是一名优秀的程序员,十分优秀!