我正在尝试从url下载文件。我尝试了两种方法,但它不能处理外部文件。
我认为这是因为我有互联网代理。我可以下载内部网络文件(图像,mp3, mp4,无论什么…),但当我尝试在外部网络下载一些东西时,它给我超时或404 Not Found。
第一种方法: System.Net。WebResponse, System.IO.FileStream
try
{
var credentials = new NetworkCredential("myNetworkUserName", "myNetworkPassword", "myNetworkDomain");
var proxy = WebProxy.GetDefaultProxy(); //new WebProxy("myNetworkProxy") <-- I TRY BOOTH WAYS
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://farm1.static.flickr.com/83/263570357_e1b9792c7a.jpg"); //External image link
proxy.Credentials = credentials;
request.Proxy = proxy;
responseExternalImage = request.GetResponse();//explode here ex=""Unable to connect to the remote server""
string fileName = GetFileName(response.ResponseUri.OriginalString);
Stream stream = response.GetResponseStream();
using (BinaryReader br = new BinaryReader(stream))
{
content = br.ReadBytes(50000000);//perto de 50Mb
br.Close();
}
response.Close();
FileStream fs = new FileStream(pathToSaveFile + "\" + fileName, FileMode.Create);
BinaryWriter bw = new BinaryWriter(fs);
try
{
bw.Write(content);
}
finally
{
fs.Close();
bw.Close();
}
}
catch (Exception ex)
{
}
在GetResponse()捕获的异常说:"无法连接到远程服务器","连接尝试失败,因为被连接的一方在一段时间后没有正确响应,或建立连接失败,因为连接的主机未能响应77.238.160.184:80"
第二种方法:System.Net。WebClient, DownloadFile
try
{
var credentials = new NetworkCredential("xpta264", ConfigurationManager.AppSettings["Xpta264Password"], "ptsi");
var proxy = WebProxy.GetDefaultProxy();
proxy.Credentials = credentials;
// Create a new WebClient instance.
using (WebClient myWebClient = new WebClient())
{
myWebClient.Proxy = proxy;
// Download the Web resource and save it into the current filesystem folder.
myWebClient.DownloadFile("http://farm1.static.flickr.com/83/263570357_e1b9792c7a.jpg", pathToSaveFile + "\testImage.jpg");
}
}
catch (Exception e)
{
}
在DownloadFile方法中捕获了异常,并给出了相同的错误。
希望有人能帮助我。
Sorry for my English
WebProxy.GetDefaultProxy()
已过时,不能处理所有情况。来自文档:
一个更好的方法是尝试请求一个url,看看是否使用了代理。我在自己的生产系统中使用了这段代码,它似乎工作得很好。找到代理后,可以在某处缓存地址:GetDefaultProxy方法不拾取任何动态设置是由ie运行的脚本生成的,从自动配置项,或从DHCP或DNS查找
应用程序应该使用WebRequest。DefaultWebProxy属性和WebRequest。GetSystemWebProxy方法,而不是GetDefaultProxy方法。
WebProxy proxy = null;
Uri testUri = new Uri("http://www.example.com/"); // replace with REAL url
Uri proxyEndpoint = WebRequest.GetSystemWebProxy().GetProxy(testUri);
if (!testUri.Equals(proxyEndpoint))
proxy = new WebProxy(proxyEndPoint.ToString());
您也可以尝试调用WebRequest.GetSystemWebProxy()
,看看是否给您代理,但我记得有问题,这就是为什么我去上面的请求路由。YMMV .