我下载了一个声音并将其保存为这样的.mp3
扩展名:
var response = await client.GetStreamAsync(fileUrl);
using (IsolatedStorageFileStream fileStream = new IsolatedStorageFileStream(filePath, FileMode.Create, isolatedStorage))
{
using (BinaryWriter binaryWriter = new BinaryWriter(fileStream))
{
await response.CopyToAsync(fileStream);
}
}
现在,当我IsolatedStorage
通过隔离存储查看器查看时,我会在那里看到文件,我也可以播放它。
我想访问和播放它:
IsolatedStorageFile isolatedStorage = IsolatedStorageFile.GetUserStoreForApplication();
IsolatedStorageFileStream fileStream = isolatedStorage.OpenFile(filePath, FileMode.Open, FileAccess.Read);
musicMediaElement.SetSource(fileStream);
musicMediaElement.Play();
}
我什么也听不见。我不知道我做错了什么。