0

我正在尝试将其写入字节数组。我不确定如何处理文本部分。

示例:设置一个名为 OF 且值为 TEST 的字母数字变量:

[0x02][0x00][0x35][0x37][0xFF][0x00]OF=TEST[0x00][0x03]

我知道如何在上面的示例中编写给定的十六进制,但是,当我到达 OF=TEST 时,我需要知道如何将其放入字节数组中。

byte[] byteData = {0x02, 0x00, 0x35, 0x37, 0xFF, What do I do here?, 0x00, 0x03};
4

2 回答 2

1

这样的事情会对你有用:

byte[] octets ;
Encoding someEncoding = new UTF8Encoding(false) ;

using( MemoryStream aMemoryStream = new MemoryStream(8192) ) // let's start with 8k
using ( BinaryWriter writer = new BinaryWriter( aMemoryStream , someEncoding ) ) // wrap that puppy in a binary writer
{
  byte[] prefix = { 0x02 , 0x00 , 0x35 , 0x37 , 0xFF , } ;
  byte[] suffix = { 0x00 , 0x03 , } ;

  writer.Write( prefix ) ;
  writer.Write( "OF=TEST" );
  writer.Write( suffix ) ;

  octets = aMemoryStream.ToArray() ;

}

foreach ( byte octet in octets )
{
  Console.WriteLine( "0x{0:X2}" , octet ) ;
}
于 2013-10-28T19:21:43.810 回答
1
byte[] preByteData = {0x02, 0x00, 0x35, 0x37, 0xFF};
byte[] postByteData = {0x00, 0x03};
//using System.Linq;
byte[] byteData = preByteData.Concat(System.Text.Encoding.UTF8.GetBytes("OF=TEST").Concat(postByteData)).ToArray();
于 2013-10-28T19:29:42.523 回答