好的,所以我想要将字节写入 dataouptustream 并将该输出流发送出去。我可以做得很好。我遇到的问题是如何在字节内写入各个位,例如:
我想将LSB(0)写为1,然后剩余的1-7位应该是100的值。或者我希望前2个LSB(0-1)为3,剩余为5。这是我迄今为止的尝试(到目前为止,我还没有真正测试过这段代码)。
ByteArrayOutputStream baos=new ByteArrayOutputStream();
DataOutputStream daos=new DataOutputStream(baos);
//LSB should be 0, the remaining should be the value 50
daos.writeByte(50 >>> 1);
//2 LSBs should be 2 (10) and the remaining should be 100
daos.writeByte(Integer.parseInt(Integer.toBinaryString(2) + Integer.toBinaryString(100)));
daos.close();
message = baos.toByteArray();
我在正确的轨道上吗?有没有一种非常简单/直接的方法来做到这一点?我必须做很多这样的事情,所以我需要真正了解如何将这些字节操作为我需要的任何东西。