【发布时间】:2015-08-18 13:32:33
【问题描述】:
我正在尝试使用下载进度条在 Xamarin Forms(PCL,因此 WebClient 不可用)中创建一个下载页面。我使用了来自 Xamarin 的以下信息,但没有成功:
http://developer.xamarin.com/recipes/ios/network/web_requests/download_a_file/ http://developer.xamarin.com/recipes/cross-platform/networking/download_progress/
这是我当前的代码(带有工作进度条):
using System;
using System.Collections.Generic;
using Xamarin.Forms;
using System.Net.Http;
using System.IO;
using System.Threading.Tasks;
namespace DownloadExample
{
public partial class DownloadPage : ContentPage
{
public DownloadPage ()
{
InitializeComponent ();
DownloadFile("https://upload.wikimedia.org/wikipedia/commons/3/3d/LARGE_elevation.jpg");
}
private async Task<long> DownloadFile(string url)
{
long receivedBytes = 0;
long totalBytes = 0;
HttpClient client = new HttpClient ();
using (var stream = await client.GetStreamAsync(url)) {
byte[] buffer = new byte[4096];
totalBytes = stream.Length;
for (;;) {
int bytesRead = await stream.ReadAsync (buffer, 0, buffer.Length);
if (bytesRead == 0) {
await Task.Yield ();
break;
}
receivedBytes += bytesRead;
int received = unchecked((int)receivedBytes);
int total = unchecked((int)totalBytes);
double percentage = ((float) received) / total;
progressBar1.Progress = percentage;
}
}
return receivedBytes;
}
}
}
现在,我需要将文件保存到本地存储。但是,在此示例中,我没有获取文件内容,因此无法将其写入本地存储。我需要在代码中进行哪些更改才能实现这一点?
仅供参考:在此示例中,我正在下载一个图像,但它将是一个 .pdf / .doc / .docx 的特征。
提前致谢。
BR、FG
【问题讨论】:
-
你能分享你是如何保存文件的以及你是如何连接缓冲区的吗?...
标签: asynchronous xamarin filestream xamarin.forms dotnet-httpclient