如何对base 64字符串进行编码和解码?如何返回给定字符串的base 64编码字符串?如何将base 64编码的字符串解码为字符串?
3 回答
幕布斯6054654
TA贡献1876条经验 获得超7个赞
使用扩展方法对类进行编码。理由是某人可能需要支持不同类型的编码(不仅仅是UTF 8)。 另一个改进是在空项的空结果方面失败-它在现实生活中非常有用,并且支持X=decode(encode(X)的等价性。
usingusing MyApplication.Helpers.Encoding).
代码:
namespace MyApplication.Helpers.Encoding{
public static class EncodingForBase64
{
public static string EncodeBase64(this System.Text.Encoding encoding, string text)
{
if (text == null)
{
return null;
}
byte[] textAsBytes = encoding.GetBytes(text);
return System.Convert.ToBase64String(textAsBytes);
}
public static string DecodeBase64(this System.Text.Encoding encoding, string encodedText)
{
if (encodedText == null)
{
return null;
}
byte[] textAsBytes = System.Convert.FromBase64String(encodedText);
return encoding.GetString(textAsBytes);
}
}}用法示例:
using MyApplication.Helpers.Encoding; // !!!namespace ConsoleApplication1{
class Program
{
static void Main(string[] args)
{
Test1();
Test2();
}
static void Test1()
{
string textEncoded = System.Text.Encoding.UTF8.EncodeBase64("test1...");
System.Diagnostics.Debug.Assert(textEncoded == "dGVzdDEuLi4=");
string textDecoded = System.Text.Encoding.UTF8.DecodeBase64(textEncoded);
System.Diagnostics.Debug.Assert(textDecoded == "test1...");
}
static void Test2()
{
string textEncoded = System.Text.Encoding.UTF8.EncodeBase64(null);
System.Diagnostics.Debug.Assert(textEncoded == null);
string textDecoded = System.Text.Encoding.UTF8.DecodeBase64(textEncoded);
System.Diagnostics.Debug.Assert(textDecoded == null);
}
}}- 3 回答
- 0 关注
- 699 浏览
添加回答
举报
0/150
提交
取消
