我是网络初学者,但我必须从一些东西开始,所以我决定在 Visual Studio 2010 中使用 C# 语言(winforms)创建一个聊天应用程序。
我用谷歌搜索了很多,我几乎找到了我需要的东西。我找到了以下代码示例(在 C# - 控制台中):
http://msdn.microsoft.com/en-us/library/system.net.sockets.tcpclient.aspx
http://msdn.microsoft.com/en-us/library/system.net.sockets.tcplistener(v=VS.71).aspx
我想使用 TCP 协议创建该应用程序(我不知道是否有更简单的方法可以做到这一点,但是当我尝试在 C# 中创建该聊天时,我了解了 TCP 的基础知识。
当我执行上面链接中的代码示例时,它们起作用了!所以我尝试在我的聊天应用程序中调整这些示例。
我的聊天应用程序实际上由两个应用程序组成:一个服务器和一个客户端。它们都具有相同的 GUI(两个文本框、一个按钮和两个标签,用于显示客户端是否连接到服务器)。
服务器/客户端应用程序上的 textBox1 是显示客户端/服务器应用程序发送的消息的文本框。在服务器/客户端应用程序的 textBox2 中,用户键入一条消息,然后按下按钮将消息发送到客户端/服务器应用程序。
让我向您展示我到目前为止所做的尝试:这是服务器应用程序代码。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.Net.Sockets;
namespace Server_TCP_WINFORMS
{
public partial class Form1 : Form
{
//Int32 port = 13000;
IPAddress localAddr = IPAddress.Parse("127.0.0.1");
TcpListener server = new TcpListener(IPAddress.Parse("127.0.0.1"), 13000);
public Form1()
{
InitializeComponent();
server.Start();
}
byte[] bytes = new byte[256];
String data = null;
TcpClient client = new TcpClient();
bool sw = true;
int data_at_byte_level = 0;
private void Form1_Load(object sender, EventArgs e)
{
try
{
label2.Text = "Waiting for an incoming connection...";
if (!server.Pending())
{
label2.Text = "For moment, there are no connections requests!";
}
else
{
client = server.AcceptTcpClient();
label2.Text = "Connected!";
sw = false;
}
}
catch (SocketException xyz)
{
MessageBox.Show("Exception occured!");
}
if (sw == false)
{
NetworkStream stream = client.GetStream();
while ((data_at_byte_level = stream.Read(bytes, 0, bytes.Length)) != 0)
{
data = System.Text.Encoding.ASCII.GetString(bytes);
textBox1.Text += data;
data = null;
bytes = null;
}
}
}
private void button1_Click(object sender, EventArgs e)
{
String dataT;
if (textBox2.Text!=null && sw == false)
{
NetworkStream stream = client.GetStream();
dataT = textBox2.Text;
byte[] msg = System.Text.Encoding.ASCII.GetBytes(dataT);
stream.Write(msg, 0, msg.Length);
}
}
}
}
这是客户端应用程序代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net.Sockets;
using System.Net;
namespace Client_TCP_WINFORMS
{
public partial class Form1 : Form
{
TcpClient client = new TcpClient("127.0.0.1", 13000);
public Form1()
{
InitializeComponent();
label2.Text = "Conected to the server!";
}
private void button1_Click(object sender, EventArgs e)
{
NetworkStream stream = client.GetStream();
if (textBox2.Text != null)
{
String data_str = textBox2.Text;
Byte[] data_byte = System.Text.Encoding.ASCII.GetBytes(data_str);
stream.Write(data_byte, 0, data_byte.Length);
}
}
private void Form1_Load(object sender, EventArgs e)
{
Byte[] data_byte = new Byte[290];
int bytes;
string Data;
NetworkStream stream = client.GetStream();
bytes = stream.Read(data_byte, 0, data_byte.Length);
Data = System.Text.Encoding.ASCII.GetString(data_byte, 0, bytes);
textBox1.Text += Data;
}
}
}
我希望这两个应用程序以下列方式运行:启动服务器应用程序,然后启动客户端应用程序。当它们都打开时,我希望它们已经连接(因为我认为这样更简单)。
然后,我希望它们都能够接受,这意味着当服务器(例如)向客户端发送消息时,后者应该接收并显示消息。如果服务器发送另一条消息,客户端也应该接收并显示它。如果用户(客户端或服务器用户)按下发送按钮,应用程序应该将消息从 textBox2 发送到另一个应用程序。我怎样才能在 Windows 窗体中做这些事情?
我在控制台的代码示例中看到有一个主循环,服务器从客户端读取消息。但是如果服务器也想发送消息怎么办?如果按下发送按钮,则发生 button_pressed 的事件,然后发送消息,但是发送完消息后,它会返回主循环吗?
请原谅我的英语。我不是母语人士。
恭敬地谢谢你。