我正在制作一个WP7应用程序,可以下载我的所有Twitter Feed。在这里,我想下载所有配置文件图像并将它们存储在本地并使用它们,以便每次打开应用程序时都会下载它们。请建议任何方法。
我在做什么:使用WebClient下载图片
public MainPage()
{
InitializeComponent();
WebClient client = new WebClient();
client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
client.DownloadStringAsync(new Uri("http://www.libpng.org/pub/png/img_png/pnglogo-blk.jpg"));
}
并将其存储到文件中。
void client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
using (IsolatedStorageFile myIsolatedStorage = IsolatedStorageFile.GetUserStoreForApplication())
{
if (myIsolatedStorage.FileExists(fileName1))
myIsolatedStorage.DeleteFile(fileName1);
var fileName1 = "Image.jpg";
using (var fileStream = new IsolatedStorageFileStream(fileName1, FileMode.Create, myIsolatedStorage))
{
using (var writer = new StreamWriter(fileStream))
{
var length = e.Result.Length;
writer.WriteLine(e.Result);
}
var fileStreamLength = fileStream.Length;
fileStream.Close();
}
}
现在我正在尝试将图像设置为BitMapImage
BitmapImage bi = new BitmapImage();
using (IsolatedStorageFile myIsolatedStorage = IsolatedStorageFile.GetUserStoreForApplication())
{
using (IsolatedStorageFileStream fileStream = myIsolatedStorage.OpenFile(fileName1, FileMode.Open, FileAccess.Read))
{
var fileStreamLength2 = fileStream.Length;
bi.SetSource(fileStream);
}
}
但是我无法设置BitmapImage的来源。它抛出System.Exception并没有什么特别的。我是以正确的方式做到的吗?我的意思是程序。
编辑另一个观察是fileStreamLength和fileStreamLength2不同。
答案 0 :(得分:3)
你不应该使用DownloadString来下载二进制文件。请改用OpenReadAsync,并将二进制数组保存到隔离存储中。
DownloadString会尝试将您的数据转换为UTF-16文本,当然在处理图片时这是不对的。