|
|
C#中Base64之编码,解码方法 |
|
|
作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站 |
编码 public string EncodeBase64(string code_type,string code) { string encode = ""; byte[] bytes = Encoding.GetEncoding(code_type).GetBytes(code); try { encode = Convert.ToBase64String(bytes); } catch { encode = code; } return encode; } 解码 public string DecodeBase64(string code_type,string code) { string decode = ""; byte[] bytes = Convert.FromBase64String(code); try { decode = Encoding.GetEncoding(code_type).GetString(bytes); } catch { decode = code; } return decode; }
|
|
相关文章:相关软件: |
|