我在独立存储中有 mp4 文件,我正在使用IsolatedStorageFileStream
. 读取文件后,我需要将其转换为b64
字符串。
所以我没有得到正确的代码。如果有人知道,请帮助我。
我在独立存储中有 mp4 文件,我正在使用IsolatedStorageFileStream
. 读取文件后,我需要将其转换为b64
字符串。
所以我没有得到正确的代码。如果有人知道,请帮助我。
//将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);
您可以使用Convert.ToBase64String(bytes[])