• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C#测试modbusTCP经验积累

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

 

代码
 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Net;
using System.Net.Sockets;
using System.Windows.Forms;

namespace WindowsApplication3
{
    
public partial class Form1 : Form
    {
        
public Form1()
        {
            InitializeComponent();
        }

        
private void button1_Click(object sender, EventArgs e)
        {
            
try
            {
                
int port = Convert.ToInt32(portm.Text);
                
string host = ipAddress.Text;
                IPAddress ip 
= IPAddress.Parse(host);
                IPEndPoint ipe 
= new IPEndPoint(ip, port);
                Socket c 
= new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                c.Connect(ipe);
                
byte[] obuf = strToToHexByte("00 00 00 00 00 06 01 03 00 00 00 0A");
                c.Send(obuf, obuf.Length, 
0);
                
byte[] recvBytes = new byte[256];
                c.Receive(recvBytes, recvBytes.Length, 
0);
                recent.Text 
= byteToHexStr(recvBytes);
                c.Close();
            }
            
catch (ArgumentNullException ex)
            {
                recent.Text 
= ex.ToString();
            }
            
catch (SocketException ex)
            {
                recent.Text 
= ex.ToString();
            }

        }

        
//16进制转换
        public static string byteToHexStr(byte[] bytes)
        {
            
string returnStr = "";
            
if (bytes != null)
            {
                
for (int i = 0; i < bytes.Length; i++)
                {
                    returnStr 
+= bytes[i].ToString("X2"+ " ";
                }
            }
            
return returnStr;
        }

        
//字符串转byte
        private static byte[] strToToHexByte(string hexString)
        {
            hexString 
= hexString.Replace(" """);
            
if ((hexString.Length % 2!= 0)
                hexString 
+= " ";
            
byte[] returnBytes = new byte[hexString.Length / 2];
            
for (int i = 0; i < returnBytes.Length; i++)
                returnBytes[i] 
= Convert.ToByte(hexString.Substring(i * 22), 16);
            
return returnBytes;
        }

        
private void timer1_Tick(object sender, EventArgs e)
        {
            button1_Click(sender,e);
        }

        
private void button2_Click(object sender, EventArgs e)
        {
            timer1.Enabled 
= true;
        }

        
private void button3_Click(object sender, EventArgs e)
        {
            timer1.Enabled 
= false;
        }

    }
}

 

 

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
OPC通信3C#通信方式发布时间:2022-07-10
下一篇:
c#中的类知识发布时间:2022-07-10
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap