嗨,我正在用 C# 开发客户端应用程序,服务器是用 C++ 编写的
服务器使用:
inline void StrToInts(int *pInts, int Num, const char *pStr)
{
int Index = 0;
while(Num)
{
char aBuf[4] = {0,0,0,0};
for(int c = 0; c < 4 && pStr[Index]; c++, Index++)
aBuf[c] = pStr[Index];
*pInts = ((aBuf[0]+128)<<24)|((aBuf[1]+128)<<16)|((aBuf[2]+128)<<8)|(aBuf[3]+128);
pInts++;
Num--;
}
// null terminate
pInts[-1] &= 0xffffff00;
}
将字符串转换为 int[]
在我的 C# 客户端中,我收到:
int[4] { -14240, -12938, -16988, -8832 }
如何将数组转换回字符串?我不想使用不安全的代码(例如指针) 我的任何尝试都导致了不可读的字符串。
编辑:这是我的方法之一:
private string IntsToString(int[] ints)
{
StringBuilder s = new StringBuilder();
for (int i = 0; i < ints.Length; i++)
{
byte[] bytes = BitConverter.GetBytes(ints[i]);
for (int j = 0; j < bytes.Length; j++)
s.Append((char)(bytes[j] & 0x7F));
}
return s.ToString();
}
我知道我需要注意字节顺序,但是由于服务器也在我的本地机器和服务器上运行,我认为这不是问题。
我的另一个尝试是使用具有显式布局和相同 FieldOffset 的整数和字符的结构,但它也不起作用。