0

我有一些 mp3 文件IsolatedStorage,想播放它们。

我这样做,但我什么也没听到:

IsolatedStorageFile isolatedStorage = IsolatedStorageFile.GetUserStoreForApplication();

IsolatedStorageFileStream fileStream = isolatedStorage.OpenFile(filePath, FileMode.Open, FileAccess.Read);

musicMediaElement.SetSource(fileStream);
musicMediaElement.Play();

我想打开文件后,我需要阅读它,但我不知道如何?

4

1 回答 1

0

请参考此链接。这将向您展示如何保存和读取 Windows Phone 中存储的音频文件。

从存储中保存和读取音频文件

我希望你能得到解决方案。

于 2013-09-26T05:29:42.563 回答