码迷,mamicode.com
首页 > 其他好文 > 详细

Soket 连接发送与接收

时间:2014-06-10 16:28:19      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   color   get   com   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
///url:地址     data:数据
 public static string GetContentFromUrl(string url, string data)
    {
        Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
         
            IPEndPoint ip = new IPEndPoint(IPAddress.Parse(url), 端口);
            socket.Connect(ip);//连接
            char[] cmgs = data.ToCharArray(); //字符串转字符数组
            byte[] message = new byte[1024];
            message = Encoding.UTF8.GetBytes(data);
            socket.Send(message);   //发送数据
        
            byte[] bytes = new byte[1024];
            socket.Receive(bytes);   //接收数据
            string messages = Encoding.Default.GetString(bytes, 0, bytes.Length);
 
            return messages;   //返回数据
        
            socket.Close();
       
 
 
    }

  

Soket 连接发送与接收,布布扣,bubuko.com

Soket 连接发送与接收

标签:class   blog   code   color   get   com   

原文地址:http://www.cnblogs.com/Evaniko/p/3779703.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!