我是网络初学者,但我必须先从一些事情开始,所以我决定使用C#语言(winforms)在visual studio 2010中创建一个聊天应用程序。
我搜索了很多关于这一点的内容,我发现了我所需要的几乎所有内容。 我找到了以下代码示例(在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(两个文本框,一个按钮和两个标签,用于显示客户端是否连接到服务器)。
服务器/客户端应用程序上的让我告诉你我到目前为止所尝试过的事情: 这是服务器应用程序代码。
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事件,然后发送消息,但是当它完成发送消息后,它会返回主循环吗?
请原谅我的英语。我不是母语人士。
谢天谢地。
答案 0 :(得分:0)
“当它们都打开时,我希望它们已经连接起来(因为我觉得这样更简单)。”
为此,您需要使用UDP(用户数据报协议)而不是TCP