二进制数据和字符串之间转换

Posted 我没有领悟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二进制数据和字符串之间转换相关的知识,希望对你有一定的参考价值。

1.把二进制数据编码为base64格式

你有一个byte[]用于表示一些二进制信息,比如图像,你需要把这些数据编码为一个字符串,以便可以通过不适合二进制的方式(比如电子邮件)发送它。

可以使用Convert类的静态方法Convert.ToBase64String,把byte[]编码为string

        public static string Base64EncodeBytes(this byte[] inputBytes)
        {
            return Convert.ToBase64String(inputBytes);
        }

2.解码base64编码的二进制数据

       public static byte[] Base64DecodeString(this string inputStr)
        {
            return Convert.FromBase64String(inputStr);
        }

3.把图像文件编码为字符串

        public static string EncodeImageToString(string imageFilePath)
        {
            byte[] image = null;
            FileStream fstrm = new FileStream(imageFilePath, FileMode.Open, FileAccess.Read);
            using (BinaryReader reader = new BinaryReader(fstrm))
            {
                image = new byte[reader.BaseStream.Length];
                for (int i = 0; i < reader.BaseStream.Length; i++)
                {
                    image[i] = reader.ReadByte();
                }
            }
            return image.Base64EncodeBytes();
        }

4.测试

       static void Main(string[] args)
        {
            string imageAsString = Base64Convert.EncodeImageToString(@"sport.jpg");
            string imageFile = AppDomain.CurrentDomain.BaseDirectory + "test.png";
            byte[] imageBytes = imageAsString.Base64DecodeString();
            FileStream fstrm = new FileStream(imageFile, FileMode.Create, FileAccess.Write);
            using(BinaryWriter writer = new BinaryWriter(fstrm))
            {
                writer.Write(imageBytes);
            }
        }

 

以上是关于二进制数据和字符串之间转换的主要内容,如果未能解决你的问题,请参考以下文章

第二十一节,基本数据类型,之间的区别

C++ 字符串与16进制字符串之间的转换

python bytes和str之间的转换

二进制数据和文件之间相互转换的方法

共享元素转换在父片段和子片段之间不起作用(嵌套片段)

跨活动的片段之间的共享元素转换不一致