将IsolatedStorageFileStream转换为wp7中的b64字符串

时间:2012-12-28 05:42:19

标签: windows-phone-7

我在隔离存储中有mp4文件,我正在使用IsolatedStorageFileStream来阅读它。读完文件后,我需要将其转换为b64字符串。

所以我没有得到适当的代码。如果有人知道那么请帮助我。

2 个答案:

答案 0 :(得分:1)

//将IsolatedStorageFileStream转换为Base64 String并获取文件的长度。

            BinaryReader reader = new BinaryReader(isoVideoFile);
            long length = reader.BaseStream.Length;
            int rr = Convert.ToInt32(length);
            byte[] chunk = reader.ReadBytes(rr);//reading the bytes 
            string temp_inBase64 = Convert.ToBase64String(chunk);

答案 1 :(得分:0)

您可以使用Convert.ToBase64String(bytes[])