【发布时间】:2013-12-12 19:33:01
【问题描述】:
这就是我正在做的,我读了一个.mp3 文件,用这种方式将它转换成Base64String:
using (fileStream)
{
fileStreamLength = (int)fileStream.Length + 1;
fileInBytes = new byte[fileStreamLength];
int currbyte = 0, i = 0;
while (currbyte != -1)
{
currbyte = fileStream.ReadByte();
fileInBytes[i++] = (byte)currbyte;
}
}
string fileInString = Convert.ToBase64String(fileInBytes);
现在经过一些工作,我再次拥有相同的Base64String,我将通过byte[] asBytesAgain = Convert.FromBase64String(fileInString);将其转换为字节
现在我的问题是如何将这个byte[] 写成.mp3 文件来播放?
【问题讨论】: