C# byte數組轉字串、擷取定義及Base64編碼

來源:互聯網
上載者:User

標籤:scope   技術   for   pos   mtab   medium   class   分享圖片   span   

Base64編碼要求把3個8位位元組(3*8=24)轉化為4個6位的位元組(4*6=24),之後在6位的前面補兩個0,形成8位一個位元組的形式。 如果剩下的字元不足3個位元組,則用0填充,輸出字元使用‘=‘,因此編碼後輸出的文本末尾可能會出現1或2個‘=‘。為了保證所輸出的編碼位可讀字元,Base64制定了一個編碼錶,以便進行統一轉換。編碼錶的大小為2^6=64,這也是Base64名稱的由來。

Base64編碼錶:

碼值 字元   碼值 字元   碼值 字元   碼值 字元
0 A 16 Q 32 g 48 w
1 B 17 R 33 h 49 x
2 C 18 S 34 i 50 y
3 D 19 T 35 j 51 z
4 E 20 U 36 k 52 0
5 F 21 V 37 l 53 1
6 G 22 W 38 m 54 2
7 H 23 X 39 n 55 3
8 I 24 Y 40 o 56 4
9 J 25 Z 41 p 57 5
10 K 26 a 42 q 58 6
11 L 27 b 43 r 59 7
12 M 28 c 44 s 60 8
13 N 29 d 45 t 61 9
14 O 30 e 46 u 62 +
15 P 31 f 47 v 63 /

    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        private void Form1_Load(object sender, EventArgs e)        {            textBox1.Text = "X2009中國";        }        private void textBox1_TextChanged(object sender, EventArgs e)        {            byte[] bs = Encoding.UTF8.GetBytes(textBox1.Text);            textBox2.Text = BitConverter.ToString(bs);            string result = "{";            foreach (byte b in bs)                result += "0x" + b.ToString("x2") + ",";            result = result.TrimEnd(‘,‘) + "}";            textBox3.Text = result;            textBox4.Text = Convert.ToBase64String(bs);        }    }

 

 

C# byte數組轉字串、擷取定義及Base64編碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.