这是我以前写的一个socket小应用,其中也顺便用到了一点点多线程的东西。
这个socket客户端是我为了方便公司的充值系统调试而写的一个小应用。由它跟充值系统进行socket通讯,自动完成充值的测试工作。
看代码吧:
import socket,thread

def Communicate(s):
    phoneno = raw_input("Please input your PhoneNo.:(Push Enter to use default)")   #Get local phoneno
    if (len(phoneno)) == 0:
        phoneno= '123456'
    phoneno="phone:"+phoneno    #Add a prefix of phoneno
    s.send(phoneno) #Send data string to server
    print '>> %s'%phoneno
    data = s.recv(4096) #Get response data from server
    print '<< %s'%data     #0819022324
    process_string='*571253*0861235468*1*2617*3#'
    s.send(process_string)
    print '>> %s'%process_string
    print '<< %s'%s.recv(4096)
    s.send('6506')
    print '>> %s'%'6506'
    print '<< %s'%s.recv(4096)
    s.close()   #Disconnect the socket connection
    print 'End!'    #End the program
    
def Refill():
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)   #Create a socket
    try:
        #s.connect((socket.gethostname(),  8888))    #Connect to target server
        s.connect(('192.168.4.129',  8888))    #Connect to target server
    except:
        print "Connect to '%s' failed!"%(socket.gethostname())
    else:
        #Communicate(s)
        thread.start_new_thread(Communicate,(s,))   #Socket communicate on a new thread. 

print "-----------------------------------------------------------"
print "Welcom to use Python Socket Tools.SocketTest.py\nThis program is designed to test FRS4 socket communicate test\n----Powered by Lucker."
if(__name__=='__main__'):
    Refill()
《完》

相关文章:

  • 2021-10-05
  • 2021-05-16
  • 2022-12-23
  • 2022-12-23
  • 2021-06-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-29
  • 2022-12-23
  • 2021-12-28
  • 2022-02-07
  • 2021-11-10
相关资源
相似解决方案