ibcadmin 发表于 2013-5-6 08:45:58

TCP基础学习教程

服务端:


首先:设置转换为一个IP   IPAddress ip = IPAddress.parse("127.0.0.1"); //转换IP

第二:   监听 TcpListenertl = new TcpListener(ip,端口号自己给);

第三:   打开监听tl.start();

第四:   挂起请求    TcpClient tc = tl.AcceptTcpClient();

第五:   实例化基础数据流 接收消息 NetworkStream ns = tc.GetStream();

第六:   读取消息StreamReader read = new StreamReader(ns);

最后:    关闭reader.Close();
               tc.Close();
               tl.Stop();


客户端:

   首先: 建立连接TcpClient tc=new TcpClient("服务器IP",服务器端口);

   第二:实例化基础数据流 NetWorkStream ns = tc.GetStream();

   第三: 写入文本 byte[] by = Encoding.UTF8.GetBytes("文本内容");

   第四: 写入流 ns.writre(by,0,by.Length);

   最后: 关闭ns.Close();
            tc.Close();

chao2332601 发表于 2013-6-16 01:12:56

谢谢分享!!!

chao2332601 发表于 2013-6-16 05:09:35

谢谢分享!!!

ssy340 发表于 2013-8-25 21:30:32

感谢,这个很不错

opjphneB 发表于 2013-9-24 19:19:24

真是好人啊~~











static/image/common/sigline.gif
http://www.duke.cc/读客小说网

ibcadmin 发表于 2014-4-7 12:15:10

今天刚好用到。

bikong7 发表于 2014-4-29 19:16:02

看起来好容易啊

ibcadmin 发表于 2014-4-29 19:18:29

bikong7 发表于 2014-4-29 11:16
看起来好容易啊

这个只是让你实现了接收跟发送

龙羽a 发表于 2014-9-18 13:57:34

谢谢

hao507 发表于 2015-3-9 09:49:02

赞一个~~
页: [1] 2
查看完整版本: TCP基础学习教程