资源简介
C#代码写的TCP/IP通信接收数据,输入IP与端口即可
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Threading;
namespace TCP_Client
{
public partial class Form1 : Form
{
NetworkStream ns;
TcpClient clientsocket;
bool connected;
Thread receive;
public Form1()
{
InitializeComponent();
this.Text = “客户端“;
iptxt.Text = “127.0.0.1“;
}
public delegate void Recdatadelegate(String str);
private void showInfo(string s)
{
Invoke(new Recdatadelegate(rtbChatIn.AppendText) new object[] { s });
}
private void EstablishConnection()
{
sslbStatus.Text = “正在连接到服务器“;
try
{
string serverIP = iptxt.Text;
int serverPort = Convert.ToInt32(porttxt.Text);
clientsocket = new TcpClient(serverIP serverPort);
ns = clientsocket.GetStream();
//sr = new StreamReader(ns);
connected = true;
sslbStatus.Text = “已连接“;
}
catch (Exception)
{
MessageBox.Show(“不能连接到服务器!“ “错误“
MessageBoxButtons.OK MessageBoxIcon.Exclamation);
sslbStatus.Text = “已断开连接“;
}
}
private void RegisterWithServer()
{
try
{
string command = “*RS“ + txtCarNO.Text + “V1000047V0000.0000N00000.0000E000.00000080804FFFFFBFF#“; // string command = “CHAT|“ + clientname + “: “ + ChatOut.Text + “\r\n“;
Byte[] outbytes;
if (rdoASCII.Checked)
outbytes = System.Text.Encoding.Default.GetBytes(command.ToCharArray());
else
outbytes = System.Text.Encoding.Unicode.GetBytes(command.ToCharArray());
ns.Write(outbytes 0 outbytes.Length);
//clientsocket.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void QuitChat()
{
if (connected)
{
try
{
ns.Close();
clientsocket.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
if (receive != null && receive.IsAlive)
receive.Abort();
}
connected = false;
}
private void ReceiveChat()
{
bool keepalive = true;
while (keepalive)
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 10343 2008-02-01 11:11 Form1.Designer.cs
文件 6014 2008-02-01 11:11 Form1.resx
文件 469 2008-02-01 10:27 Program.cs
文件 3227 2008-02-01 10:28 TCP_Client.csproj
目录 0 2008-02-01 10:27 Properties
文件 1184 2008-02-01 10:27 Properties\AssemblyInfo.cs
文件 2874 2008-02-01 10:27 Properties\Resources.Designer.cs
文件 5612 2008-02-01 10:27 Properties\Resources.resx
文件 1093 2008-02-01 10:27 Properties\Settings.Designer.cs
文件 249 2008-02-01 10:27 Properties\Settings.settings
文件 7863 2008-02-01 14:00 Form1.cs
----------- --------- ---------- ----- ----
38928 11
- 上一篇:C#USB通信,可以直接用的
- 下一篇:C# 微信公众平台开发.NET源码
相关资源
- C# 微信公众平台开发.NET源码
- C#USB通信,可以直接用的
- C# winfrom中webservice接口连接服务器上传
- C#手写识别源码
- C# WinForm DirectShow视频采集及图片抓取
- C#winform textbox 画边框和圆角
- C#控制系统声音大小
- 基于Mysql数据库的C#实现登录注册功能
- activemq 接收文件流 C#
- ACTIVEMQ C#下的
- 学生管理系统c#
- 微信 网页授权获取用户基本信息(
- C#基于VS2010写的简单串口上位机
- C#桌面倒计时软件源码
- C#MJPG协议视频传输上位机Demo
- C#示波器完整
- c#通过opc读写plc的程序代码
- C#编写的CRC校验软件
- C#开发大全(基础卷)源码
- C#垃圾代码生成器.rar
- 使用c#控制台应用程序写游戏—消消乐
- C#XPS 转为图片并保存
- HTML、C#以及SQL Server学生信息管理系统
- c#两个串口实现图片传输并且实现图片
- opc 客户端c#编写数据同时存入mysql数据
- C# Bitmap转RGB32(NI)
-
IronPython.dll和Microsoft.sc
ripting.dll - 智能水表c##代码
- c#随机出题
- C#求矩阵运算代码,特征值特征向量
评论
共有 条评论