Is there any function equivalent to Python\'s struct.pack in Java that allows me to pack and unpack values like this?
struct.pack
pump_on = struct.pack(\"II
I think what you may be after is a ByteBuffer:
ByteBuffer pump_on_buf = ... pump_on_buf.putInt(0); pump_on_buf.putInt(0); pump_on_buf.putShort(21); pump_on_buf.putShort(96); pump_on_buf.putInt(512); byte[] pump_on = pump_on_buf.array();