Develop
2013.04.23 17:33
[c#] 간단한 소켓통신 예제..
조회 수 27593 댓글 0
// Server Socket
// NameSpace 선언 using System; using System.Net; using System.Net.Sockets; using System.Text; namespace ServerSideSocket { class ServerClass { public static Socket Server , Client; public static byte[] getByte = new byte[1024]; public static byte[] setByte = new byte[1024]; public const int sPort = 5000; [STAThread] static void Main(string[] args) { string stringbyte = null; IPAddress serverIP = IPAddress.Parse("127.0.0.1"); IPEndPoint serverEndPoint = new IPEndPoint(serverIP,sPort); try { Server= new Socket( AddressFamily.InterNetwork, SocketType.Stream,ProtocolType.Tcp); Server.Bind(serverEndPoint); Server.Listen(10); Console.WriteLine("------------------------"); Console.WriteLine("클라이언트의 연결을 기다립니다. "); Console.WriteLine("------------------------"); Client = Server.Accept(); if(Client.Connected) { while(true) { Client.Receive(getByte,0,getByte.Length,SocketFlags.None); stringbyte = Encoding.UTF7.GetString(getByte); if (stringbyte != String.Empty) { int getValueLength = 0; getValueLength = byteArrayDefrag(getByte); stringbyte = Encoding.UTF7.GetString( getByte,0,getValueLength+1); Console.WriteLine("수신데이터:{0} | 길이:{1}", stringbyte,getValueLength+1); setByte = Encoding.UTF7.GetBytes(stringbyte); Client.Send(setByte,0,setByte.Length,SocketFlags.None); } getByte = new byte[1024]; setByte = new byte[1024]; } } } catch(System.Net.Sockets.SocketException socketEx) { Console.WriteLine("[Error]:{0}", socketEx.Message); } catch(System.Exception commonEx) { Console.WriteLine("[Error]:{0}", commonEx.Message); } finally { Server.Close(); Client.Close(); } } public static int byteArrayDefrag(byte[] sData) { int endLength = 0; for(int i = 0; i < sData.Length; i++) { if((byte)sData[i] != (byte)0) { endLength = i; } } return endLength; } } }
// Client Socket
using System; using System.Net; using System.Net.Sockets; using System.Text; namespace ClientSideSocket { class ClientClass { public static Socket socket; public static byte[] getbyte = new byte[1024]; public static byte[] setbyte = new byte[1024]; public const int sPort = 5000; [STAThread] static void Main(string[] args) { string sendstring = null; string getstring = null; IPAddress serverIP = IPAddress.Parse("127.0.0.1"); IPEndPoint serverEndPoint = new IPEndPoint(serverIP,sPort); socket = new Socket( AddressFamily.InterNetwork,SocketType.Stream,ProtocolType.Tcp); Console.WriteLine("------------------------------"); Console.WriteLine(" 서버로 접속합니다.[엔터를 입력하세요] "); Console.WriteLine("------------------------------"); Console.ReadLine(); socket.Connect(serverEndPoint); if (socket.Connected) { Console.WriteLine(">>연결 되었습니다.(데이터를 입력하세요)"); } while(true) { Console.Write(">>"); sendstring = Console.ReadLine(); if(sendstring != String.Empty) { int getValueLength = 0; setbyte = Encoding.UTF7.GetBytes(sendstring); socket.Send(setbyte,0, setbyte.Length,SocketFlags.None); Console.WriteLine("송신 데이터 : {0} | 길이{1}", sendstring, setbyte.Length); socket.Receive(getbyte,0, getbyte.Length,SocketFlags.None); getValueLength = byteArrayDefrag(getbyte); getstring = Encoding.UTF7.GetString(getbyte, 0,getValueLength+1); Console.WriteLine(">>수신된 데이터 :{0} | 길이{1}", getstring , getValueLength+1); } getbyte = new byte[1024]; } } public static int byteArrayDefrag(byte[] sData) { int endLength = 0; for(int i = 0; i < sData.Length; i++) { if((byte)sData[i] != (byte)0) { endLength = i; } } return endLength; } } }
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
709 | Develop |
[ios] Objective-C에서 형식이 있는 문자열(Format Strings)에 사용할 수 있는 토큰들(Tokens)
![]() |
hooni | 2013.04.23 | 20049 |
708 | Develop | [ios] Objective-C 문자열 조작 메서드 | hooni | 2013.04.23 | 27812 |
707 | Develop | [android] [번역] 안드로이드 Android Cloud to Device Messaging(C2DM) | hooni | 2013.04.23 | 22618 |
706 | PPT |
[ppt] Equation Solving 발표 자료 (@PWE랩 톡데이 2011.07.26)
![]() |
hooni | 2013.04.23 | 26222 |
705 | PPT |
[doc] 발표 자료 ㅎㅎtalk4neo
![]() |
hooni | 2013.04.23 | 21815 |
704 | Develop |
[android] 자동차 리모컨 소스코드
![]() |
hooni | 2013.04.23 | 17082 |
703 | Develop | [js] 간단한 게임 프로토타입 (HTML5 와는 무관) | hooni | 2013.04.23 | 16357 |
702 | Develop | [js] 수학 공식을 제공하는 Math 객체 | hooni | 2013.04.23 | 16363 |
701 | Develop | [ios] 참고할만한 좋은 예제 소스.. | hooni | 2013.04.23 | 28179 |
700 | System/OS |
[doc] 코코아 프로그래밍 for MACOS 관련 내 분량..
![]() |
hooni | 2013.04.23 | 21897 |
699 | Develop | [ios] 코코아 프레임워크(Cocoa Framework) 기본적인 내용~ | hooni | 2013.04.23 | 28960 |
698 | PPT |
[ajax] 크로스 도메인(Cross Domain) 이슈 해결 방안
![]() |
hooni | 2013.04.23 | 22962 |