Cet article parle principalement de URLError et HTTPError, ainsi que de certaines méthodes de traitement.
# 1. 网络无连接,即本机无法上网。 # 2. 连接不到特定的服务器。 # 3. 服务器不存在。
à In le code, les instructions try-sauf doivent être utilisées pour entourer et intercepter les exceptions correspondantes.
# coding:UTF8 import urllib.request request = urllib.request.urlopen("http://www.baidu.com") try: urllib.request.urlopen(request) print("[Errno 11004] getaddrinfo failed") except urllib.URLError as e: print(e.reason)a utilisé la méthode urlopen pour accéder à une URL inexistante.
Remarque :
HTTPError 是 URLError 的子类,在利用 urlopen 方法发出一个请求时,服务器上都会对应一个应答对象 response,其中它包含一个数字”状态码”。 例: 捕获的异常是 HTTPError,它会带有一个 code 属性,就是错误代号,另外又打印了 reason 属性,这是它的父类 URLError 的属性。 运行结果: 错误代号是 403,错误原因是 Forbidden,说明服务器禁止访问。 知道,HTTPError 的父类是 URLError,根据编程经验,父类的异常应当写到子类异常的后面,如果子类捕获不到,那么可以捕获父类的异常, 如果捕获到了 HTTPError,则输出 code,不会再处理 URLError 异常。如果发生的不是HTTPError,则会去捕获 URLError 异常,输出错误原因。 另外还可以加入 hasattr 属性提前对属性进行判断,代码改写如下 首先对异常的属性进行判断,以免出现属性输出报错的现象。 假如 response 是一个”重定向”,需定位到别的地址获取文档,urllib2 将对此进行处理。 注 : HTTPError 实例产生后会有一个 code 属性,这就是是服务器发送的相关错误号。 因为 urllib2 可以为处理重定向,也就是 3 开头的代号可以被处理,并且 100-299 范围的号码指示成功,所以只能看到 400-599 的错误号码。 本文基于基础,通过案例的分析,代码的展示。解决在实际应用中,对于URLError空异常的处理方式。介绍了两种主要的异常错误。以及提供了相应错误的解决方案处理方法。三、HTTPError
import urllib2
req = urllib2.Request('http://blog.csdn.net/cqcre')
try:
urllib2.urlopen(req)
except urllib2.HTTPError, e:
print e.code
print e.reason
1. 代码解析
2. 优化代码
import urllib2
req = urllib2.Request('http://blog.csdn.net/cqcre')
try:
urllib2.urlopen(req)
except urllib2.HTTPError, e:
print e.code
except urllib2.URLError, e:
print e.reason
else:
print "OK"
import urllib2
req = urllib2.Request('http://blog.csdn.net/cqcre')
try:
urllib2.urlopen(req)
except urllib2.URLError, e:
if hasattr(e,"code"):
print e.code
if hasattr(e,"reason"):
print e.reason
else:
print "OK"
3. 异常处理方法
四、总结
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!