首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > Ruby Rails >

ruby socket通信

2012-12-18 
ruby socket通讯创建server创建clientrequire socketclient TCPSocket.open(localhost, 9999)clie

ruby socket通讯
创建server



创建client
require 'socket'client = TCPSocket.open('localhost', '9999')client.send("oracle\n", 0) # 0 means standard packetclient.close

热点排行