Read the given byte buffer into a byte array
(ByteBuffer buffer)
| 191 | * Read the given byte buffer into a byte array |
| 192 | */ |
| 193 | public static byte[] toArray(ByteBuffer buffer) { |
| 194 | return toArray(buffer, 0, buffer.limit()); |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * Read a byte array from the given offset and size in the buffer |