HttpWebRequest 错误 500(java.lang.NullPointerException)

发布于 2024-11-12 19:11:54 字数 1037 浏览 0 评论 0原文

我正在尝试获取 http://validator.w3.org/ 的内容C# 中的 mobile/check?docAddr=www.facebook.com。这是我的代码:

HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url);
request.UserAgent = "A .NET Web Crawler";

WebResponse response = request.GetResponse();

Stream stream = response.GetResponseStream();

StreamReader reader = new StreamReader(stream);
htmlText = reader.ReadToEnd();

该代码与其他页面正常工作,但与 http: //validator.w3.org/mobile/check?docAddr=www.facebook.com 和不同的 docAddr 它给了我一个 500 错误。我检查了 Fiddler,错误是:

HTTP/1.1 500 Internal Server Error
Date: Fri, 03 Jun 2011 22:18:36 GMT
Server: Jigsaw/2.2.6
Content-Length: 59
Content-Type: text/html
Via: 1.1 validator.w3.org
Vary: Accept-Encoding
Connection: close

Servlet has thrown exception:java.lang.NullPointerException

如何解决此问题?

I am trying to get content of http://validator.w3.org/mobile/check?docAddr=www.facebook.com in C#. This is my code:

HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url);
request.UserAgent = "A .NET Web Crawler";

WebResponse response = request.GetResponse();

Stream stream = response.GetResponseStream();

StreamReader reader = new StreamReader(stream);
htmlText = reader.ReadToEnd();

The code works correctly with other pages, but with http://validator.w3.org/mobile/check?docAddr=www.facebook.com and a different docAddr it's giving me a 500 error. I check with Fiddler and the error is:

HTTP/1.1 500 Internal Server Error
Date: Fri, 03 Jun 2011 22:18:36 GMT
Server: Jigsaw/2.2.6
Content-Length: 59
Content-Type: text/html
Via: 1.1 validator.w3.org
Vary: Accept-Encoding
Connection: close

Servlet has thrown exception:java.lang.NullPointerException

How do I fix this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文