ByteBuf.setBytes
- ByteBuf setBytes(int index, ByteBuf src)
- ByteBuf setBytes(int index, ByteBuf src, int length)
- ByteBuf setBytes(int index, ByteBuf src, int srcIndex, int length)
- ByteBuf setBytes(int index, byte[] src)
- ByteBuf setBytes(int index, byte[] src, int srcIndex, int length)
- ByteBuf setBytes(int index, ByteBuffer src)
- int setBytes(int index, InputStream inStream, int length)
Transfers the specified source array's data to this buffer starting at the specified absolute {@code index}. This method does not modify {@code readerIndex} or {@code writerIndex} of this buffer.
@throws IndexOutOfBoundsException if the specified {@code index} is less than {@code 0}, if the specified {@code srcIndex} is less than {@code 0}, if {@code index + length} is greater than {@code this.capacity}, or if {@code srcIndex + length} is greater than {@code src.length}