C#判断网站是否能访问或者断链的方法
程序员文章站
2023-12-13 12:13:40
本文实例讲述了c#判断网站是否能访问或者断链的方法。分享给大家供大家参考。具体如下:
最近有位朋友说他有很多网址,可能有些已经过期或者不能访问了。自己去一个一个点可以,但...
本文实例讲述了c#判断网站是否能访问或者断链的方法。分享给大家供大家参考。具体如下:
最近有位朋友说他有很多网址,可能有些已经过期或者不能访问了。自己去一个一个点可以,但又很麻烦!
再过一段时间又要去检查一次,每次都这样就不方便了! 于是就做了个小程序给帮他检测一下。
以下做了一个例子作为参考:
using system.net; public bool checkurlvisit(string url) { try { httpwebrequest req = (httpwebrequest)webrequest.create(url); httpwebresponse resp = (httpwebresponse)req.getresponse(); if (resp.statuscode == httpstatuscode.ok) { resp.close(); return true; } } catch (webexception webex) { return false; } return false; } string[] links = { "http://www.baidu.com", "http://www.google.com", "http://www.chinabuffetflora.com" }; foreach (string link in links) { httpcontext.current.response.write( link+" : "+checkurlvisit(link)+" <br>"); }
测试结果:
http://www.baidu.com : true
http://www.google.com : true
http://www.chinabuffetflora.com : false
希望本文所述对大家的c#程序设计有所帮助。