gpt4 book ai didi

c# - 如何简化 BinaryReader 的网络字节顺序转换?

转载 作者:太空狗 更新时间:2023-10-29 20:26:20 57 4
gpt4 key购买 nike

System.IO.BinaryReader 以小端格式读取值。

我有一个 C# 应用程序连接到服务器端的专有网络库。服务器端按照网络字节顺序发送所有内容,正如人们所期望的那样,但我发现在客户端处理这个问题很尴尬,尤其是对于无符号值。

UInt32 length = (UInt32)IPAddress.NetworkToHostOrder(reader.ReadInt32());

是我想出的从流中获取正确无符号值的唯一方法,但这看起来既笨拙又丑陋,而且我还没有测试这是否只是为了削减高阶值所以我必须做一些有趣的 BitConverter 事情。

除了围绕整个事物编写包装器以避免每次读取时出现这些丑陋的转换之外,我是否缺少某种方法?阅读器上似乎应该有一个字节序选项来使这样的事情变得更简单,但我还没有遇到任何事情。

最佳答案

没有内置转换器。这是我的包装器(如您所见,我只实现了我需要的功能,但结构很容易根据您的喜好进行更改):

/// <summary>
/// Utilities for reading big-endian files
/// </summary>
public class BigEndianReader
{
public BigEndianReader(BinaryReader baseReader)
{
mBaseReader = baseReader;
}

public short ReadInt16()
{
return BitConverter.ToInt16(ReadBigEndianBytes(2), 0);
}

public ushort ReadUInt16()
{
return BitConverter.ToUInt16(ReadBigEndianBytes(2), 0);
}

public uint ReadUInt32()
{
return BitConverter.ToUInt32(ReadBigEndianBytes(4), 0);
}

public byte[] ReadBigEndianBytes(int count)
{
byte[] bytes = new byte[count];
for (int i = count - 1; i >= 0; i--)
bytes[i] = mBaseReader.ReadByte();

return bytes;
}

public byte[] ReadBytes(int count)
{
return mBaseReader.ReadBytes(count);
}

public void Close()
{
mBaseReader.Close();
}

public Stream BaseStream
{
get { return mBaseReader.BaseStream; }
}

private BinaryReader mBaseReader;
}

基本上,ReadBigEndianBytes 完成繁重的工作,并将其传递给 BitConverter。如果您读取大量字节,肯定会出现问题,因为这会导致大量内存分配。

关于c# - 如何简化 BinaryReader 的网络字节顺序转换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/123918/

57 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com