#-*-coding:utf-8-*-
importsocket,os
server=socket.socket()
server.bind(('localhost',6969))#綁定要監(jiān)聽的端口
print("正在監(jiān)聽端口")
server.listen(5) #監(jiān)聽
print("我要開始等電話了")
while True:
server.listen(3)
conn, addr = server.accept() #等電話打進來
print(conn) # conn就是客戶端連過來而在服務(wù)端為其生成的一個連接實例
print("電話來了")
while True:
data=conn.recv(1024)#通過conn連接實例接收數(shù)據(jù)
print("recv:",data)
if notdata:
print("client has lost...")
break
res=os.popen(data).read()
conn.send(res)#通過conn連接實例發(fā)送數(shù)據(jù) send根據(jù)系統(tǒng)緩存大小,一般32K
server.close()
#-*-coding:utf-8-*-
importsocket
client=socket.socket()#默認(rèn)famliy=AF_INET(ipv4)地址簇 type=SOCK_STREAM (tcp/ip)聲明socket類型,同時生成socket連接對象
client.connect(("localhost",6969))
while True:
msg=raw_input("請輸入:").strip() #不能發(fā)送空數(shù)據(jù)
iflen(msg)==0:continue #如果msg長度為0,就繼續(xù) ,重新發(fā)
client.send(msg.encode("utf-8"))#3.x只能發(fā)bytes類型數(shù)據(jù),只能接收ASCII數(shù)據(jù),漢字不行,要發(fā)漢字只能編碼成utf-8格式
data=client.recv(102400)#收102400字節(jié)數(shù)據(jù)
print(data.decode("utf-8"))#bytes類型打印出來要解碼
client.close()
成都創(chuàng)新互聯(lián)專注骨干網(wǎng)絡(luò)服務(wù)器租用10多年,服務(wù)更有保障!服務(wù)器租用,四川移動機房托管 成都服務(wù)器租用,成都服務(wù)器托管,骨干網(wǎng)絡(luò)帶寬,享受低延遲,高速訪問。靈活、實現(xiàn)低成本的共享或公網(wǎng)數(shù)據(jù)中心高速帶寬的專屬高性能服務(wù)器。
#import os
#>>> a=os.popen("df")
#>>> b=os.popen("df").read()
#>>> print(b)
importos
a=os.popen("ipconfig") #命令的執(zhí)行結(jié)果通過管道輸出,執(zhí)行的結(jié)果生成是一個對象
print(a)
b=a.read()#命令的執(zhí)行結(jié)果通過管道輸出,并把輸出的結(jié)果通過read讀出來
print(b)