如何在wp7中打开文件

时间:2012-03-01 11:52:37

标签: c# windows-phone-7

我的IsolatedStorage中有一个文件。我需要从我的应用程序中打开该文件。我试图在WebBrowser中打开它,就像这样

private void OpenFile(string url)
{
    WebBrowserTask task = new WebBrowserTask();
    task.Uri = new Uri(url);
    task.Show();
}

但它会引发异常。错误消息为无效URI:The format of the URI could not be determined.

如何在我的应用程序中打开文件?