标签:
QT提供了QCryptographicHash类,想转md5或者sda1都很方便
QString fileText = original_Image.text(); QString fileCut = fileText.remove(256,fileText.count() - 256); fileCut += QTime::currentTime().toString();//加上时间戳再生成 QByteArray ba; ba =QCryptographicHash::hash(fileCut.toUtf8(),QCryptographicHash::Md5); QString tempFilenamemd5(ba.toHex());
比如我要生成随机文件名字,可以加上时间戳什么的,比如上面的写法。
标签:
原文地址:http://www.cnblogs.com/Philip-Tell-Truth/p/5845249.html