代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
检测网络资源是否有效
作者:
zhanqi
/ 发布于
2011/7/7
/
748
下载数据时,首先需要知道文件在服务器是否存在或链接是否有效,利用 HTTP 的 HEAD 方法,根据 HTTP 的响应状态码,即可确定该资源的可用性。
<div> <table> <tbody> <tr> <td class="content">"csharp keyword"><strong><font color="#006699">public</font></strong> "csharp keyword"><strong><font color="#006699">static</font></strong> "csharp keyword"><strong><font color="#006699">bool</font></strong> "csharp plain">CheckWebResource("csharp keyword"><strong><font color="#006699">string</font></strong> "csharp plain">uriString)</td> </tr> </tbody> </table> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">{</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp keyword"><strong><font color="#006699">try</font></strong></td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">{</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp comments"><font color="#008200">// URI 必须使用 </font><a href="http:///"><font color="#008200">http://</font></a><font color="#008200"> 或 </font><a href="https:///"><font color="#008200">https://</font></a><font color="#008200"> 开头,否则会 uri 前缀无效或强制转换失败! </font></td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">HttpWebRequest webReq = (HttpWebRequest)WebRequest.Create(uriString);</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">webReq.Method = WebRequestMethods.Http.Head;</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">webReq.Timeout = 3000;</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">HttpWebResponse webRes = (HttpWebResponse)webReq.GetResponse();</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp keyword"><strong><font color="#006699">return</font></strong> "csharp plain">webRes.StatusCode == HttpStatusCode.OK;</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">}</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp keyword"><strong><font color="#006699">catch</font></strong> "csharp plain">(Exception ex)</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">{</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp comments"><font color="#008200">// 输出到控制台</font></td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">System.Diagnostics.Debug.WriteLine(ex.Message);</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp keyword"><strong><font color="#006699">return</font></strong> "csharp keyword"><strong><font color="#006699">false</font></strong>"csharp plain">;</td> </tr> </tbody> </table> </div> <div class="line alt1"> <table> <tbody> <tr> <td class="content">"csharp plain">}</td> </tr> </tbody> </table> </div> <div class="line alt2"> <table> <tbody> <tr> <td class="content">"csharp plain">}</td> </tr> </tbody> </table> </div> </div>
试试其它关键字
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
zhanqi
贡献的其它代码
(
2
)
.
获取网络适配器信息
.
检测网络资源是否有效
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3