java bytebuffer分包收集,Java ByteBuffer rewind()用法及代码示例

java.nio.ByteBuffer类的rewind()方法用于倒带此缓冲区。位置设置为零,标记被丢弃。假设已正确设置了限制,请在序列channel-write或get操作之前调用此方法。调用此方法既不会更改,也不会丢弃标记的值。

用法:

public ByteBuffer rewind()

返回值:此方法返回此缓冲区。

下面是说明rewind()方法的示例:

范例1:

// Java program to demonstrate

// rewind() method

import java.nio.*;

import java.util.*;

public class GFG {

public static void main(String[] args)

{

// defining and allocating ByteBuffer

// using allocate() method

ByteBuffer byteBuffer = ByteBuffer.allocate(4);

// put byte value in byteBuffer

// using put() method

byteBuffer.put((byte)20);

byteBuffer.put((byte)'a');

// print the byte buffer

System.out.println("Buffer before operation:"

+ Arrays.toString(byteBuffer.array())

+ "\nPosition:" + byteBuffer.position()

+ "\nLimit:" + byteBuffer.limit());

// rewind the Buffer

// using rewind() method

byteBuffer.rewind();

// print the bytebuffer

System.out.println("\nBuffer after operation:"

+ Arrays.toString(byteBuffer.array())

+ "\nPosition:" + byteBuffer.position()

+ "\nLimit:" + byteBuffer.limit());

}

}

输出:

Buffer before operation:[20, 97, 0, 0]

Position:2

Limit:4

Buffer after operation:[20, 97, 0, 0]

Position:0

Limit:4

范例2:

// Java program to demonstrate

// rewind() method

import java.nio.*;

import java.util.*;

public class GFG {

public static void main(String[] args)

{

// defining and allocating ByteBuffer

// using allocate() method

ByteBuffer byteBuffer = ByteBuffer.allocate(5);

// put byte value in byteBuffer

// using put() method

byteBuffer.put((byte)20);

byteBuffer.put((byte)30);

byteBuffer.put((byte)40);

// mark will be going to discarded by rewind()

byteBuffer.mark();

// print the buffer

System.out.println("Buffer before operation:"

+ Arrays.toString(byteBuffer.array())

+ "\nPosition:" + byteBuffer.position()

+ "\nLimit:" + byteBuffer.limit());

// Rewind the Buffer

// using rewind() method

byteBuffer.rewind();

// print the buffer

System.out.println("\nBuffer after operation:"

+ Arrays.toString(byteBuffer.array())

+ "\nPosition:" + byteBuffer.position()

+ "\nLimit:" + byteBuffer.limit());

}

}

输出:

Buffer before operation:[20, 30, 40, 0, 0]

Position:3

Limit:5

Buffer after operation:[20, 30, 40, 0, 0]

Position:0

Limit:5

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值