0
 from poster.encode import multipart_encode
 from poster.streaminghttp import register_openers

    def picscrazy(str,int):


          register_openers()
          datagen, headers = multipart_encode({"imagefile[]": open(str, "rb")})
          request = urllib2.Request("http://www.picscrazy.com/process.php", datagen, headers)

Str 是文件名,而 int 只是另一个标志。该代码是将文件上传到图像托管网站。我正在使用海报海报来发布请求。程序在请求语句后停止并给出错误。我无法理解错误是我的网络还是程序中的问题。以下是错误的回溯:

 Traceback (most recent call last):
  File "C:\Documents and Settings\Administrator\Desktop\for exbii\res.py", line 42, in <module>
    picscrazy(fname,1)
  File "C:\Documents and Settings\Administrator\Desktop\for exbii\res.py", line 14, in picscrazy
    print(urllib2.urlopen(request).read())
  File "C:\Python25\Lib\urllib2.py", line 121, in urlopen
    return _opener.open(url, data)
  File "C:\Python25\Lib\urllib2.py", line 374, in open
    response = self._open(req, data)
  File "C:\Python25\Lib\urllib2.py", line 392, in _open
    '_open', req)
  File "C:\Python25\Lib\urllib2.py", line 353, in _call_chain
    result = func(*args)
  File "C:\Python25\lib\poster\streaminghttp.py", line 142, in http_open
    return self.do_open(StreamingHTTPConnection, req)
  File "C:\Python25\Lib\urllib2.py", line 1076, in do_open
    raise URLError(err)
URLError: <urlopen error (10054, 'Connection reset by peer')>
4

1 回答 1

2

如果您无法显示从服务器返回的标头,那么您的服务器只是将您切断了。

可能是您的要求不好——但这不太可能。

可能是您超出了带宽限制。

您的请求可能看起来像是 DDOS 攻击,因为它们发生得太频繁了。

于 2011-09-19T19:35:11.817 回答