C# Base 64 编码/解码
作者:高景洋 日期:2014-11-25 10:54:35 浏览次数:3788
1、base64 to string
string strPath = "aHR0cDovLzIwMy44MS4yOS40Njo1NTU3L1
9iYWlkdS9yaW5ncy9taWRpLzIwMDA3MzgwLTE2Lm1pZA==";
byte[] bpath = Convert.FromBase64String(strPath);
strPath = System.Text.ASCIIEncoding.Default.GetString(bpath);
2、string to base64
System.Text.Encoding encode = System.Text.Encoding.ASCII ;
byte[] bytedata = encode.GetBytes( "test");
string strPath = Convert.ToBase64String(bytedata,0,bytedata.Length);
string strPath = "aHR0cDovLzIwMy44MS4yOS40Njo1NTU3L1
9iYWlkdS9yaW5ncy9taWRpLzIwMDA3MzgwLTE2Lm1pZA==";
byte[] bpath = Convert.FromBase64String(strPath);
strPath = System.Text.ASCIIEncoding.Default.GetString(bpath);
2、string to base64
System.Text.Encoding encode = System.Text.Encoding.ASCII ;
byte[] bytedata = encode.GetBytes( "test");
string strPath = Convert.ToBase64String(bytedata,0,bytedata.Length);
本文永久性链接:
<a href="http://r4.com.cn/art58.aspx">C# Base 64 编码/解码</a>
<a href="http://r4.com.cn/art58.aspx">C# Base 64 编码/解码</a>
当前header:Host: r4.com.cn
X-Host1: r4.com.cn
X-Host2: r4.com.cn
X-Host3: 127.0.0.1:8080
X-Forwarded-For: 3.144.165.56
X-Real-Ip: 3.144.165.56
X-Domain: r4.com.cn
X-Request: GET /art58.aspx HTTP/1.1
X-Request-Uri: /art58.aspx
Connection: close
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Accept-Encoding: gzip, br, zstd, deflate