摘要: 1 #include <QString> 2 #include <QByteArray> 3 #include <QCryptographicHash> 4 #include <QFile> 5 #include <QDebug> 6 7 QByteArray getFileMd5(QString filePath) 8 { 9 QFile localFile(filePath);10 11 if (!localFile.open(QFile::ReadOnly))12 {13 qDebug() << "file 阅读全文
posted @ 2012-03-28 17:31 it-mac 阅读(3683) 评论(2) 推荐(0) 编辑