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.
例如,如果给我一个类似于下面的消息结构的要求:
Java中是否有任何库可以使其更快完成?
或者我必须手动将它创建为带有字节数组和 setter/getter 的单独类?
您可能会受益于 ByteBuffer 类中的实用方法,而不是直接处理字节数组。您将找到获取和设置多字节整数的方法(例如 getShort、putInt、putLong),您还可以控制字节顺序(大端或小端)。
然后,您可以使用有意义的方法名称将 ByteBuffer 包装在另一个类中,例如:
int getType() { return bb.getInt(2); // offset 2 } void setType(int type) { bb.putInt(2, type); }