?? program.cs
字號:
//client端
using System;
using System.Text;
using System.IO;
using System.Net;
using System.Net.Sockets;
namespace socketsample
{
class Class1
{
static void Main()
{
try
{
int port = 2000;
string host = "127.0.0.1";
string sendStr = "";
IPAddress ip = IPAddress.Parse(host);
IPEndPoint ipe = new IPEndPoint(ip, port);//把ip和端口轉化為IPEndPoint實例
Socket c = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);//創建一個Socket
Console.WriteLine("Conneting...");
c.Connect(ipe);//連接到服務器
while (sendStr != "close")
{
sendStr = Console.ReadLine();
//string sendStr = "hello!This is a socket test";
byte[] bs = Encoding.ASCII.GetBytes(sendStr);
Console.WriteLine("Send Message");
c.Send(bs, bs.Length, 0);//發送測試信息
// string recvStr = "";
// byte[] recvBytes = new byte[1024];
// int bytes;
// bytes = c.Receive(recvBytes, recvBytes.Length, 0);//從服務器端接受返回信息
// recvStr += Encoding.ASCII.GetString(recvBytes, 0, bytes);
// Console.WriteLine("Client Get Message:{0}", recvStr);//顯示服務器返回信息
}
c.Close();
}
catch (ArgumentNullException e)
{
Console.WriteLine("ArgumentNullException: {0}", e);
}
catch (SocketException e)
{
Console.WriteLine("SocketException: {0}", e);
}
Console.WriteLine("Press Enter to Exit");
Console.ReadLine();
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -