日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

工具类

發布時間:2025/7/14 编程问答 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 工具类 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

?

數據轉化
public class DataConvert
{

/// <summary>
/// 獲得MD5加密字符串
/// </summary>
/// <param name="str"></param>
/// <returns></returns>
public static string GetMD5String(string str)
{
return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str, "MD5");
}


/// <summary>
/// 獲得MD5加密字符串
/// </summary>
/// <param name="str"></param>
/// <returns></returns>
public static string GetFileMD5String(string FilePath)
{
if (!File.Exists(FilePath))
{
return "";
}

try
{
using (FileStream get_file = new FileStream(FilePath, FileMode.Open, FileAccess.Read, FileShare.Read))
{
System.Security.Cryptography.MD5CryptoServiceProvider get_md5
= new System.Security.Cryptography.MD5CryptoServiceProvider();
byte[] hash_byte = get_md5.ComputeHash(get_file);
string resule = System.BitConverter.ToString(hash_byte);
resule
= resule.Replace("-", "");
get_file.Close();
get_file.Dispose();
return resule;
}
}
catch (Exception e)
{
Console.WriteLine(e);
return GetMD5String("");
}
}


/// <summary>
/// 將對象序列化
/// </summary>
/// <param name="info"></param>
/// <returns>返回UTF8格式編碼的字節數組</returns>
public static byte[] Serialize(object info)
{
if (info == null)
{
return null;
}
JavaScriptSerializer js
= new JavaScriptSerializer();
try
{
string str = js.Serialize(info);
if (str == null)
{
return null;
}
return Encoding.UTF8.GetBytes(str);
}
catch (InvalidOperationException ex)
{
Console.WriteLine(ex.Message);
return null;
}
}


/// <summary>
/// 反序列化
/// </summary>
/// <returns></returns>
public static Dictionary<string, object> Dserialize(string strJsonData)
{
if (strJsonData == null || strJsonData == "")
{
return null;
}

JavaScriptSerializer js
= new JavaScriptSerializer();
try
{
return js.Deserialize<Dictionary<string, object>>(strJsonData);
}
catch (InvalidOperationException ex)
{
Console.WriteLine(ex.Message);
return null;
}
catch (ArgumentException exec)
{
Console.WriteLine(exec.Message);
return null;
}
}


/// <summary>
/// 反序列化
/// </summary>
/// <returns></returns>
public static Dictionary<string, object> Dserialize(byte[] bufferJsonData)
{
return Dserialize(Encoding.Default.GetString(bufferJsonData));
}

}

?

轉載于:https://www.cnblogs.com/08shiyan/archive/2010/11/22/1883708.html

總結

以上是生活随笔為你收集整理的工具类的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。