如何下载名称中包含阿拉伯字符的图像?
How can I download an image that contains Arabic characters in the name?
这是我的代码:
WebClient client = new WebClient();
client.DownloadFile("http://bazdeh.org/wp-content/uploads/2016/05/%D8%A8%D8%A7%D8%B2%D8%AF%D9%87-%D8%B1%D9%88%DB%8C.jpg", Server.MapPath("/Image/holoo3.jpg"));
// original url (not encoded): http://bazdeh.org/wp-content/uploads/2016/05/بازده-روی.jpg
关于下载损坏且无法打开的图像的代码(我的意思是,windows 图像查看器抛出):
Windows Photo Viewer can't open this picture because the file appears to be damaged, corrupted, or is too large.
注意到我已经 encoded/decoded 它像这样但仍然不起作用并说 "invalid URL format":
HttpUtility.UrlEncode(Uri.UnescapeDataString(url)));
知道我该怎么做吗?
我找到了我的答案。问题是我的网速很慢。
我用高速互联网测试我的代码并得到结果。问题与文件名中的阿拉伯字符无关。
尝试使用低速网速时,图片下载不完整。
这是我的代码:
WebClient client = new WebClient();
client.DownloadFile("http://bazdeh.org/wp-content/uploads/2016/05/%D8%A8%D8%A7%D8%B2%D8%AF%D9%87-%D8%B1%D9%88%DB%8C.jpg", Server.MapPath("/Image/holoo3.jpg"));
// original url (not encoded): http://bazdeh.org/wp-content/uploads/2016/05/بازده-روی.jpg
关于下载损坏且无法打开的图像的代码(我的意思是,windows 图像查看器抛出):
Windows Photo Viewer can't open this picture because the file appears to be damaged, corrupted, or is too large.
注意到我已经 encoded/decoded 它像这样但仍然不起作用并说 "invalid URL format":
HttpUtility.UrlEncode(Uri.UnescapeDataString(url)));
知道我该怎么做吗?
我找到了我的答案。问题是我的网速很慢。 我用高速互联网测试我的代码并得到结果。问题与文件名中的阿拉伯字符无关。 尝试使用低速网速时,图片下载不完整。