如何将从url(服务器)下载的图像保存到windows store app中的本地文件夹

时间:2013-10-09 13:03:35

标签: c# windows-8 download windows-store-apps winrt-xaml

我正在尝试从服务器下载图像并将其保存在本地文件中。 我试过了

 private async void save()
    {

        Uri source = new Uri("http://www.google.ca/intl/en_com/images/srpr/logo1w.png");
        StorageFile destinationFile;
        try
        {
            destinationFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(
                "downloadimage.jpg", CreationCollisionOption.GenerateUniqueName);
        }
        catch (FileNotFoundException ex)
        {
            System.Diagnostics.Debug.WriteLine("bingooooo"+ex.ToString());
            return;
        }
        BackgroundDownloader downloader = new BackgroundDownloader();
        DownloadOperation download = downloader.CreateDownload(source, destinationFile);
        await download.StartAsync();
        ResponseInformation response = download.GetResponseInformation();



    }

但它不起作用

1 个答案:

答案 0 :(得分:0)

您的代码很好,它只是缺少Task作为返回类型。如果您的方法是异步的,则应将返回类型用作Task而不是void。如果返回类型为string&amp;方法是异步的,那么返回类型应该是Task<string>

private async void save()更改为private async Task save()

当您致电save()追加await关键字时。

查看Diving deep with WinRT and await