Qt 编写获取文件MD5值方法

const QString getHash(const QString& filePath)

{

     QString sMd5;

     QFile file(filePath);

     if(file.open(QIODevice::ReadOnly))

    {

         QByteArray bArray = QCryptographicHash::hash(file.readAll(),QCryptographicHash::Md5);

         sMd5 = QString(bArray.toHex()).toUpper();

    }

    file.close();

    return sMd5;

}

你可能感兴趣的:(qt,编写获取文件MD5值方法)