All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zx.sms.common.util.NettyByteBufUtil Maven / Gradle / Ivy

package com.zx.sms.common.util;

import io.netty.buffer.ByteBuf;

public final class NettyByteBufUtil {

	public static byte[] toArray(ByteBuf buf,int length){
		 byte[] result = new byte[length];
		 buf.readBytes(result);
		 return result;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy