C# Base 64 编码/解码实现代码
发布时间:2020-12-15 05:55:07 所属栏目:百科 来源:网络整理
导读:1、base64 to string string strPath = "aHR0cDovLzIwMy44MS4yOS40Njo1NTU3L1 9iYWlkdS9yaW5ncy9taWRpLzIwMDA3MzgwLTE2Lm1pZA=="; byte[] bpath = Convert.FromBase64String(strPath); strPath = System.Text.ASCIIEncoding.Default.GetString(bpath); 2、st
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,bytedata.Length); (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |