我在IsolatedStorage
中有一些mp3文件,想要播放它们。
我这样做,但我什么都没听到:
IsolatedStorageFile isolatedStorage = IsolatedStorageFile.GetUserStoreForApplication();
IsolatedStorageFileStream fileStream = isolatedStorage.OpenFile(filePath, FileMode.Open, FileAccess.Read);
musicMediaElement.SetSource(fileStream);
musicMediaElement.Play();
我认为在打开文件后,我需要阅读它,但我不知道怎么做?
答案 0 :(得分:0)
请参阅此链接。 这将向您展示如何从Windows Phone中的存储保存和读取音频文件。
<强> Save and Read audio file from storage 强>
我希望你能得到解决方案。