手机:webbrowser无法打开PDF文件(Windows Phone 8)

时间:2013-03-11 14:08:06

标签: c# windows-phone-8

我已经构建了一个带有webbrowser的应用程序。它工作正常但是当我尝试导航到像bla这样的地址时。 pdf webbrowser什么都没显示。 如果地址链接到pdf文件,我自动打开Internet Explorer解决了这个问题。

有更好的解决方案吗?我想在我自己的应用程序中打开该PDF文件,我不想每次都打开Internet Explorer。有什么建议吗?

3 个答案:

答案 0 :(得分:1)

如果您有一个在本地下载的独立存储PDF文件,您可以使用LaunchFileAsync启动PDF阅读器应用程序(或用于打开PDF文件的任何其他应用程序)。

 private async void LaunchFileButton_Click(object sender, RoutedEventArgs rea)
 {

    // Access isolated storage.
    StorageFolder local = Windows.Storage.ApplicationData.Current.LocalFolder;

    // Access the PDF.
    StorageFile pdfFile = await local.GetFileAsync("file1.pdf");

    // Launch the bug query file.
    Windows.System.Launcher.LaunchFileAsync(pdfFile);
}

(改编自MSDN, see section on "launching a file")。

如果是远程URL,则可以使用LaunchUriAsync(首先使用IE下载文件)。

您需要在安装了PDF Reader应用程序的设备上尝试此操作 - 它不能在模拟器上运行。

答案 1 :(得分:0)

如果您不熟悉Async,请阅读以下文章:使用Async和Await进行MSDN异步编程

我无法测试我的应用,因为我的WP8手机目前无法使用,我无法在模拟器上安装PDF阅读器。

请致电以下方法开始下载

WebClient pdfDownloader = null;
string LastFileName = ""; //To save the filename of the last created pdf

private void StartPDFDownload(string URL)
{
    pdfDownloader = new WebClient(); //prevents that the OpenReadCompleted-Event is     called multiple times
    pdfDownloader.OpenReadCompleted += DownloadPDF; //Create an event handler
    pdfDownloader.OpenReadAsync(new Uri(URL)); //Start to read the website
}

async void DownloadPDF(object sender, OpenReadCompletedEventArgs e)
{
    byte[] buffer = new byte[e.Result.Length]; //Gets the byte length of the pdf file
    await e.Result.ReadAsync(buffer, 0, buffer.Length); //Waits until the rad is completed (Async doesn't block the GUI Thread)

    using (IsolatedStorageFile ISFile = IsolatedStorageFile.GetUserStoreForApplication())
    {
        try
        {
            LastFileName = "tempPDF" + DateTime.Now.Ticks + ".pdf";
            using (IsolatedStorageFileStream ISFileStream = ISFile.CreateFile(LastFileName))
            {
                await ISFileStream.WriteAsync(buffer, 0, buffer.Length);
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message + Environment.NewLine + ex.HResult,
            ex.Source, MessageBoxButton.OK);
        //Catch errors regarding the creation of file
        }
     }    
    OpenPDFFile();
}

private async void OpenPDFFile()
{
    StorageFolder ISFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
    try
    {
        IStorageFile ISFile = await ISFolder.GetFileAsync(LastFileName);
        await Windows.System.Launcher.LaunchFileAsync(ISFile);
        //http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj206987%28v=vs.105%29.aspx
    }
    catch (Exception ex)
    {
    //Catch unknown errors while getting the file
    //or opening the app to display it
    }
}

要从WebBrowser-Control调用这些方法,您需要捕获导航事件。

YourWebBrowserControl.Navigating += YourWebBrowserControl_Navigating;

void YourWebBrowserControl_Navigating(object sender, NavigatingEventArgs e)
{
    if(e.Uri.AbsolutPath.EndsWith("pdf"))
    {
        StartPDFDownload(e.Uri.ToString());
    }
}

不要忘记你必须删除有一天创建的文件。

答案 2 :(得分:0)

尝试此操作从WebControl打开PDF:

void MyWebBrowserControl_Navigating(object sender, NavigatingEventArgs e)
{
    if (e.Uri.AbsolutPath.ToLower().EndsWith(".pdf"))
    {
        var success = Windows.System.Launcher.LaunchUriAsync(e.Uri);
    }
}