- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个名为 GetIP 的函数,我在启动时和用户按下按钮时调用该函数。由于某种原因,它在启动时不会崩溃,但在使用按钮调用该函数时会崩溃。没有异常(exception),什么都不会卡住。
函数代码:
private void GetIP()
{
string pageTitle = functions.GetWebPageTitle("http://xyro18.woelmuis.nl/index.php");
string[] ip = new string[2];
ip = pageTitle.Split('|');
currentIpLabel.Text = ip[0];
webIpLabel.Text = ip[1];
}
现在我发现它在我的 getWebPageTitle 函数中崩溃了
函数代码:
public static string GetWebPageTitle(string url)
{
// Create a request to the url
HttpWebRequest request = HttpWebRequest.Create(url) as HttpWebRequest;
request.Method = "HEAD";
// If the request wasn't an HTTP request (like a file), ignore it
if (request == null) return null;
// Use the user's credentials
request.UseDefaultCredentials = true;
// Obtain a response from the server, if there was an error, return nothing
HttpWebResponse response = null;
try { response = request.GetResponse() as HttpWebResponse; }
catch (WebException) { return null; }
// Regular expression for an HTML title
string regex = @"(?<=<title.*>)([\s\S]*)(?=</title>)";
// If the correct HTML header exists for HTML text, continue
if (new List<string>(response.Headers.AllKeys).Contains("Content-Type"))
if (response.Headers["Content-Type"].StartsWith("text/html"))
{
// Download the page
WebClient web = new WebClient();
web.UseDefaultCredentials = true;
string page = web.DownloadString(url);
// Extract the title
Regex ex = new Regex(regex, RegexOptions.IgnoreCase);
return ex.Match(page).Value.Trim();
}
// Not a valid HTML page
return null;
}
它在网络上崩溃。DownloadString
对于崩溃,我的意思是卡住并且不显示任何异常等。
最佳答案
嗯,我不能说我知道为什么它会卡住,但这里有一些可能有帮助的建议:
关于c# - Webclient.DownloadString 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3828934/
我想从谷歌财经导入文本数据,我用这个http地址作为参数来DownloadString http://www.google.com/finance/getprices?i= 1200&p=1d&f=d
我有一个简单的功能可以从特定页面的以下代码中抓取突然出现 503 错误的网页: try { WebClient client = new WebClient(); client.Proxy =
我正在尝试从 Amazon 下载 html 文档,但由于某种原因,我得到了一个错误的编码字符串,例如“�� K��g��g�e”。 这是我尝试过的代码: using (var webClient =
我有一个名为 GetIP 的函数,我在启动时和用户按下按钮时调用该函数。由于某种原因,它在启动时不会崩溃,但在使用按钮调用该函数时会崩溃。没有异常(exception),什么都不会卡住。 函数代码:
这个问题在这里已经有了答案: C# WebClient disable cache (12 个答案) 关闭 7 年前。 我正在使用这段代码从 URL 获取返回字符串 webClient.Encodi
只是一段代码 WebClient wc = new WebClient(); String str = wc.DownloadString(new Uri("http://content.warfra
我正在开发一个使用 ASP.Net 3.5 运行的 Web 应用程序 在应用程序的某处,我正在调用外部系统。此调用包括从特定 url 下载字符串: string targetUrl = BuildMy
我遇到了一个关于 WebClient.DownloadString 的奇怪问题,我似乎无法解决,我的代码: Dim client As New WebClient() Dim html = clien
这个问题在这里已经有了答案: WebClient.DownloadString result is not match with Browser result 2 (3 个答案) 关闭 5 年前。
WebClient client = new WebClient(); string url = "https://someurl.com/..." string get = client.Dow
我正在使用 webclient 从在线共享点下载 XML 文件。 但是,当我使用 WebClient.DownloadString(string url) 方法时,一些字符没有被正确解码。 当我使用
我正在尝试查看 http://simpledesktops.com/browse/desktops/2012/may/17/where-the-wild-things-are/ 的来源使用代码: St
对 WebClient.DownloadString 的调用给出了第一次机会异常: IOException: The specified registry key does not exist. 一段
我想从海盗湾的搜索查询中获取源代码,我的代码中有这个但它没有返回任何内容: WebClient webpage = new WebClient(); string source= webpage.D
我在为我正在构建的屏幕抓取工具从网上下载一些内容时遇到问题。 在下面的代码中,从 Web 客户端下载字符串方法返回的字符串返回一些奇怪的字符用于少数(不是所有)网站的源下载。 我最近添加了 http
任何人都知道我可以如何修改下面的 DownloadString 以便我也可以传递基本的身份验证凭据? 我正在使用与 PsGet (http://psget.net/) 相同的技术来下载我自己的内部脚本
我正在使用 WebClient.DownloadString() 方法下载一些数据。我正在使用以下代码: static void Main(string[] args) { s
我昨天开始使用 Xamarin for Android,是的,它非常好。当然,我和每个人一样,肯定会有一些错误。 我尝试的只是使用以下代码行异步下载 www.google.com 的 HTML:
我想知道在使用 WebClient.DownloadString 时我应该保护自己免受哪些异常的影响。 这是我目前使用它的方式,但我相信你们可以建议更好、更健壮的异常处理。 例如,在我的脑海中: 没有
我正在尝试使用正则表达式从网站检索名称。但是,当我运行该程序时,使用“路径中的非法字符”出现错误。这是代码: private void button1_Click(object sender, Eve
我是一名优秀的程序员,十分优秀!