iPhone将字节写入Socket

时间:2012-08-21 20:43:20

标签: ios sockets

我的应用程序中有一个输出流,我只想写3个字节到该流。有没有人见过一个很好的例子?字节是:

Byte command1 = 254;
Byte command2 = 108;
Byte command3 = 1;

由于

1 个答案:

答案 0 :(得分:1)

感谢Jack-Wagons投票。

我从其他程序员发布的一些示例软件中找到了我的问题的答案。以下是示例代码:

Byte *commandBytes = malloc(3);
commandBytes[0] = (Byte)254;
commandBytes[1] = (Byte)108;
commandBytes[2] = (Byte)1;
[outputStream write:(uint8_t *)commandBytes maxLength:3];

希望这将有助于将来的某个人。