C#获取文件的MD5码
生活随笔
收集整理的這篇文章主要介紹了
C#获取文件的MD5码
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;namespace SendOutRequire
{public class MD5Code{/// <summary>/// 獲取文件的MD5碼/// </summary>/// <param name="fileName">傳入的文件名(含路徑及后綴名)</param>/// <returns></returns>public string GetMD5HashFromFile(string fileName){try{FileStream file = new FileStream(fileName, System.IO.FileMode.Open);MD5 md5 = new MD5CryptoServiceProvider();byte[] retVal = md5.ComputeHash(file);file.Close();StringBuilder sb = new StringBuilder();for (int i = 0; i < retVal.Length; i++){sb.Append(retVal[i].ToString("x2"));}return sb.ToString();}catch (Exception ex){throw new Exception("GetMD5HashFromFile() fail,error:" + ex.Message);}}}
}
?
出處:http://blog.csdn.net/joyhen/article/details/25107441
《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀總結
以上是生活随笔為你收集整理的C#获取文件的MD5码的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: c#插件式开发
- 下一篇: c# 使用TCP连接(server)