资源简介
两个wpf程序,一个是服务器,一个是客户端。两个进行通信。
代码片段和文件信息
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using System.Windows.Forms;
namespace ClientSocket
{
public partial class Form1 : Form
{
//定义Socket对象
Socket clientSocket;
//创建接收消息的线程
Thread threadReceive;
//接收服务端发送的数据
string str;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender EventArgs e)
{
}
private void button_connect_Click(object sender EventArgs e)
{
IPAddress ip = IPAddress.Parse(this.text_ip.Text.Trim());
clientSocket = new Socket(AddressFamily.InterNetwork SocketType.Stream ProtocolType.Tcp);
try {
//连接服务端
clientSocket.Connect(ip Convert.ToInt32(this.text_port.Text.Trim()));
//开启线程不停的接收服务端发送的数据
threadReceive = new Thread(new ThreadStart(Receive));
threadReceive.IsBackground = true;
threadReceive.Start();
//设置连接按钮在连接服务端后状态为不可点
this.button_connect.Enabled = false;
} catch {
MessageBox.Show(“连接服务端失败,请确认ip和端口是否填写正确“ “连接服务端失败“);
}
}
//接收服务端消息的线程方法
private void Receive()
{
try {
while (true) {
byte[] buff = new byte[20000];
int r = clientSocket.Receive(buff);
str = Encoding.Default.GetString(buff0r);
this.Invoke(new Action(() => { this.text_log1.Text += (str + “\r\n“); }));
}
} catch {
MessageBox.Show(“获取服务端参数失败““获取服务端参数失败“);
}
}
private void button_close_Click(object sender EventArgs e)
{
//clientSocket关闭
clientSocket.Close();
//threadReceive关闭
threadReceive.Abort();
}
private void button_send_Click(object sender EventArgs e)
{
try {
string strMsg = this.text_log2.Text.Trim();
byte[] buffer = new byte[20000];
buffer = Encoding.Default.GetBytes(strMsg);
clientSocket.Send(buffer);
} catch {
MessageBox.Show(“发送数据失败“ “发送数据失败“);
}
}
}
}
- 上一篇:C# ASP.net 物流信息网站
- 下一篇:VS2015下用C#连接数据库代码
相关资源
- VS2015下用C#连接数据库代码
- C# ASP.net 物流信息网站
- c# AE 属性查询
- ASP.NETC#邮件收发管理系统论文及毕业
- DS18B20 ID号搜索函数(C#)
- C# 的连连看小游戏源代码
- C#小游戏拯救大行动源代码
- C#ListView控件使用简单源代码
- asp.net购物车 .net购物车 C#购物车 net通
- C#控制台实现ATM程序
- C#模拟退火算法排课系统
- C#获取外接USB设备信息,包括VID,PI
- Halcon C#实现图像的灰度化鼠标放大缩
- Unity面试题30题含答案——C#基础.
- c# modbus tcp Demo程序
- C#WinForm的ComboBox控件自定义实现自动模
- VisiFire for Wpf 3.6.8 去水印版本
- c# 基于BP算法的贝叶斯网络参数学习
- 棋盘覆盖 C#可视化实现
- 旋转图片C#使图片旋转
- C#凯撒密码的原理与实现
- C# socket聊天 服务器转发
- 新浪新闻RSS阅读器C#版
- Freeman链码计算图像矩 C#
- C#UDP屏幕监控
- C#读取本地数据源数据,在百度地图上
- Book Sell图书销售管理系统
- C#图像处理源码
-
PWPF原理及仿真含simuli
nk模型和m文件 - 基于C#的霍夫变换检测直线算法
评论
共有 条评论