gpt4 book ai didi

C# 如何检查 URL 是否存在/是否有效?

转载 作者:IT王子 更新时间:2023-10-29 03:34:48 27 4
gpt4 key购买 nike

我正在用 visual c# 2005 制作一个简单的程序,它在 Yahoo! 上查找股票代码Finance,下载历史数据,然后绘制指定股票代码的价格历史。

我知道获取数据所需的确切 URL,如果用户输入一个现有的股票代码(或至少一个在 Yahoo! Finance 上有数据的股票代码),它就可以正常工作。但是,如果用户组成一个股票代码,我会遇到运行时错误,因为程序会尝试从不存在的网页中提取数据。

我正在使用 WebClient 类,并使用 DownloadString 函数。我查看了 WebClient 类的所有其他成员函数,但没有看到任何可用于测试 URL 的内容。

我该怎么做?

最佳答案

这是此解决方案的另一种实现方式:

using System.Net;

///
/// Checks the file exists or not.
///
/// The URL of the remote file.
/// True : If the file exits, False if file not exists
private bool RemoteFileExists(string url)
{
try
{
//Creating the HttpWebRequest
HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
//Setting the Request method HEAD, you can also use GET too.
request.Method = "HEAD";
//Getting the Web Response.
HttpWebResponse response = request.GetResponse() as HttpWebResponse;
//Returns TRUE if the Status code == 200
response.Close();
return (response.StatusCode == HttpStatusCode.OK);
}
catch
{
//Any exception will returns false.
return false;
}
}

发件人:http://www.dotnetthoughts.net/2009/10/14/how-to-check-remote-file-exists-using-c/

关于C# 如何检查 URL 是否存在/是否有效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/924679/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com