码迷,mamicode.com
首页 > Windows程序 > 详细

C# Server Socket

时间:2015-04-21 16:02:44      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using LitJson;

public class Program{
    static Socket serverSocket;
    static Socket listenScoket;
    static int byt;
    static byte[] buf;
    static byte[] bufsend;
    static string str;
    static Thread threadSend, threadRec;

    public static void Main (string[] args){
        serverSocket = new Socket (AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
        IPEndPoint ipEndpoint = new IPEndPoint (IPAddress.Parse ("127.0.0.1"), 3333);
        serverSocket.Bind (ipEndpoint);
        serverSocket.Listen (20);
        buf = new byte[1024];
        bufsend = new byte[1024];

        listenScoket = serverSocket.Accept ();

        if (listenScoket.Connected) {
//            threadRec = new Thread (new ThreadStart(ReceiveSocket));
//            threadRec.IsBackground = true;
//            threadRec.Start ();

            threadSend = new Thread (new ThreadStart (SendSocket));
            threadSend.IsBackground = true;
            threadSend.Start ();

        } else {
            Console.WriteLine ("fail");
        }
                
        Console.ReadKey ();
    }

    public static void SendSocket(){
        while (true) {
//            string userid = Console.ReadLine ();
//            string state = Console.ReadLine ();
//            string sends = "{\"userid\":\"" + userid + "\",\"state\":\"" + state + "\"}";
            string sends = "{\"server\":\"00\"}";
            bufsend = Encoding.UTF8.GetBytes (sends);
            listenScoket.Send (bufsend);
        }
    }
        
    public static void ReceiveSocket(){
        while(true){
            byt = listenScoket.Receive(buf);
            if(byt>0){
                str = Encoding.UTF8.GetString(buf);
                Console.WriteLine(str);

                bufsend = Encoding.UTF8.GetBytes ("{\"userid\":\"id123\",\"state\":\"03\"}");
                listenScoket.Send (bufsend);
            }
        }
    }
}
View Code

 

C# Server Socket

标签:

原文地址:http://www.cnblogs.com/nnnnn/p/4444579.html

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