0

我在独立存储中有 mp4 文件,我正在使用IsolatedStorageFileStream. 读取文件后,我需要将其转换为b64字符串。

所以我没有得到正确的代码。如果有人知道,请帮助我。

4

2 回答 2

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);
于 2012-12-29T07:11:47.010 回答
0

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

于 2012-12-28T07:31:28.933 回答