C#中文件转换为byte[]及Base64String


    因为开发的接口涉及到以stream和string方式插入文件,于是测试人员在写测试代码的时候希望不打开文件的情况下直接将硬盘上文件转换为byte[]及Base64String,方法如下:

            System.IO.FileStream fs = System.IO.File.OpenRead("c:\\Winter.jpg");//传文件的路径即可
            System.IO.BinaryReader br = new BinaryReader(fs);
            byte[] bt = br.ReadBytes(Convert.ToInt32(fs.Length));
            string base64String = Convert.ToBase64String(bt);
            br.Close();
            fs.Close();
            //axNsoControl1.OpenDocumentWithString(base64String, 2);
            axNsoControl1.CreateNew("");
            axNsoControl1.AddImageWithString(base64String);

 对于希望从Base64String转换到byte[],可以用Convert.FromBase64String()



你可能感兴趣的:(c/c++/c#,string,byte,c#,bt,stream,测试)