Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你如何通过服务器套接字发送整数值?发送字符串相当容易,因为这是 MDN 教程中所涵盖的内容。
您可以将其转换为字符串、XML 或您希望的任何其他格式。或者,如果您只想发送整数的字节,可以将整数转换为字节数组,如下所示:
BitConverter.GetBytes(integer);
但是,如果这样做,则必须注意通信两端的字节顺序(大端与小端)。
将它转换为字符串怎么样,最后你主要发送一个字节数组