91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python 網絡編程:TCP

發布時間:2020-06-28 17:08:33 來源:網絡 閱讀:929 作者:虎皮喵的喵 欄目:編程語言

在python2.7中完好運行:

#!/usr/bin/python
# -*- coding: utf-8 -*-

# 導入socket庫:
import socket
# 創建一個socket:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# 建立連接:
s.connect(('www.sina.com.cn', 80))
s.send('GET / HTTP/1.1\r\nHost: www.sina.com.cn\r\nConnection: close\r\n\r\n')

# 接收數據:
buffer = []
while True:
    # 每次最多接收1k字節:
    d = s.recv(1024)
    if d:
        buffer.append(d)
    else:
        break
data = ''.join(buffer)
print (data)

# 關閉連接:
s.close()

運行結果:

HTTP/1.1 200 OK
Server: nginx
Date: Mon, 30 Jul 2018 15:27:31 GMT
Content-Type: text/html
Content-Length: 569784
Connection: close
Last-Modified: Mon, 30 Jul 2018 15:24:01 GMT
Vary: Accept-Encoding
X-Powered-By: shci_v1.03
Expires: Mon, 30 Jul 2018 15:28:06 GMT
Cache-Control: max-age=60
Age: 14
Via: http/1.1 gwbn.guangzhou.ha2ts4.26 (ApacheTrafficServer/6.2.1 [cHs f ]), http/1.1 gwbn.shanghai.ha2ts4.19 (ApacheTrafficServer/6.2.1 [cHs f ])
X-Via-Edge: 1532964451960c86fc48b09010e7c77e64765
X-Cache: HIT.19
X-Via-CDN: f=edge,s=gwbn.shanghai.ha2ts4.18.nb.sinaedge.com,c=139.196.111.200;f=Edge,s=gwbn.shanghai.ha2ts4.19,c=124.14.1.18

<!DOCTYPE html>
<!-- [ published at 2018-07-30 23:24:00 ] -->
<html>
<head>
:
:


在python3中運行出錯:

運行結果:

Traceback (most recent call last):
  File "/usercode/file.py", line 16, in <module>
    s.send('GET / HTTP/1.1\r\nHost: www.sina.com.cn\r\nConnection: close\r\n\r\n')
TypeError: 'str' does not support the buffer interface


這是因為python3對字符串做了更改,使得默認字符串編碼與python2.7的不同。

所以,使用client_socket.send(data)時,將其替換為client_socket.send(data.encode())。
當使用data = client_socket.recv(512)獲取數據時,請將其替換為data = client_socket.recv(512).decode()


更改后的程序為:

#!/usr/bin/python
# -*- coding: utf-8 -*-


# 導入socket庫:
import socket
# 創建一個socket:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
# 建立連接:
s.connect(('www.sina.com.cn', 80))
s.send(('GET / HTTP/1.1\r\nHost: www.sina.com.cn\r\nConnection: close\r\n\r\n').encode())   ####添加.encode

# 接收數據:
buffer = []
while True:
    # 每次最多接收1k字節:
    d = s.recv(1024).decode("utf8","ignore")  #######添加.decode("utf8","ignore")
    if d:
        buffer.append(d)
    else:
        break
data = ''.join(buffer)
print (data)

# 關閉連接:
s.close()

運行結果:

HTTP/1.1 200 OK
Server: nginx
Date: Mon, 30 Jul 2018 16:00:02 GMT
Content-Type: text/html
Content-Length: 569807
Connection: close
Last-Modified: Mon, 30 Jul 2018 15:57:02 GMT
Vary: Accept-Encoding
X-Powered-By: shci_v1.03
Expires: Mon, 30 Jul 2018 16:00:35 GMT
Cache-Control: max-age=60
Age: 31
Via: http/1.1 gwbn.guangzhou.ha2ts4.26 (ApacheTrafficServer/6.2.1 [cHs f ]), http/1.1 gwbn.shanghai.ha2ts4.19 (ApacheTrafficServer/6.2.1 [cHs f ])
X-Via-Edge: 1532966402856de110e6a09010e7c4a141492
X-Cache: HIT.19
X-Via-CDN: f=edge,s=gwbn.shanghai.ha2ts4.19.nb.sinaedge.com,c=106.14.17.222;f=Edge,s=gwbn.shanghai.ha2ts4.19,c=124.14.1.19

<!DOCTYPE html>
<!-- [ published at 2018-07-30 23:57:00 ] -->
<html>
:
:


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鹤峰县| 沙坪坝区| 莆田市| 仁寿县| 湖口县| 天镇县| 瑞丽市| 中阳县| 花垣县| 乐东| 民权县| 马关县| 韩城市| 乌拉特后旗| 益阳市| 石阡县| 博白县| 河间市| 务川| 简阳市| 基隆市| 黑龙江省| 兖州市| 新建县| 宁陕县| 冕宁县| 沐川县| 宁德市| 宝丰县| 突泉县| 陆良县| 乐清市| 洪泽县| 台南市| 宣城市| 洛南县| 正镶白旗| 琼海市| 阜城县| 武宁县| 赫章县|