大家好,又见面了,我是你们的朋友全栈君。
//原始数组
byte[] bytes = ImageUtils.toByteArray(fromPaths[0]);
//新数组
byte[] b1 = new byte[bytes.length-80];
//从原始数组80位置开始截取后面所有
System.arraycopy(bytes, 80, b1, 0, bytes.length-80);
BufferData2D bufferData2D = new BufferData2D(ByteBuffer.wrap(b1), GridDataType.Int8);
System.arraycopy(src, srcPos, dest, destPos, length)
参数解析:
src:byte源数组
srcPos:截取源byte数组起始位置(0位置有效)
dest,:byte目的数组(截取后存放的数组)
destPos:截取后存放的数组起始位置(0位置有效)
length:截取的数据长度
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/131944.html原文链接:https://javaforall.cn