📌  相关文章
📜  Java中的 ByteBuffer putLong() 方法及示例

📅  最后修改于: 2022-05-13 01:55:27.265000             🧑  作者: Mango

Java中的 ByteBuffer putLong() 方法及示例

putLong(整数值)

Java.nio.ByteBuffer类的putLong(int value)方法用于将包含给定 long 值的 8 个字节以当前字节顺序写入该缓冲区的当前位置,然后将该位置增加 8。

句法:

public abstract ByteBuffer putLong(long value)

参数:此方法采用要写入的 long 值。

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

异常:此方法抛出以下异常:

  • BufferOverflowException-如果此缓冲区的当前位置不小于其限制
  • ReadOnlyBufferException-如果此缓冲区是只读的

下面是说明 putLong(long value) 方法的示例:

示例 1:

// Java program to demonstrate
// putLong() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the ByteBuffer
        int capacity = 24;
  
        // Creating the ByteBuffer
        try {
  
            // creating object of ByteBuffer
            // and allocating size capacity
            ByteBuffer bb = ByteBuffer.allocate(capacity);
  
            // putting the value in ByteBuffer
            // using putLong() method
            bb.putLong(23)
                .putLong(24)
                .putLong(30)
                .rewind();
  
            // print the ByteBuffer
            System.out.print("Original ByteBuffer: [ ");
            for (int i = 1; i <= capacity / 8; i++)
                System.out.print(bb.getLong() + " ");
            System.out.print("]");
        }
  
        catch (BufferOverflowException e) {
  
            System.out.println("Exception throws : " + e);
        }
  
        catch (ReadOnlyBufferException e) {
  
            System.out.println("Exception throws : " + e);
        }
    }
}
输出:
Original ByteBuffer: [ 23 24 30 ]

示例 2:演示 BufferOverflowException。

// Java program to demonstrate
// putLong() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the ByteBuffer
        int capacity = 24;
  
        // Creating the ByteBuffer
        try {
  
            // creating object of ByteBuffer
            // and allocating size capacity
            ByteBuffer bb = ByteBuffer.allocate(capacity);
  
            // putting the value in ByteBuffer
            // using putLong() method
            bb.putLong(23)
                .putLong(24)
                .putLong(30)
                .rewind();
  
            // print the ByteBuffer
            System.out.print("Original ByteBuffer: [ ");
            for (int i = 1; i <= capacity / 8; i++)
                System.out.print(bb.getLong() + " ");
            System.out.print("]");
  
            // putting the value in ByteBuffer
            // using putInt() method
            bb.putLong(234);
        }
  
        catch (BufferOverflowException e) {
            System.out.println("\n\nbuffer's current position"
                               + " is not smaller than its limit");
            System.out.println("Exception throws : " + e);
        }
  
        catch (ReadOnlyBufferException e) {
  
            System.out.println("Exception throws : " + e);
        }
    }
}
输出:
Original ByteBuffer: [ 23 24 30 ]

buffer's current position is not smaller than its limit
Exception throws : java.nio.BufferOverflowException

示例 3:演示 ReadOnlyBufferException。

// Java program to demonstrate
// putLong() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the ByteBuffer
        int capacity = 24;
  
        // Creating the ByteBuffer
        try {
  
            // creating object of ByteBuffer
            // and allocating size capacity
            ByteBuffer bb = ByteBuffer.allocate(capacity);
  
            // putting the value in ByteBuffer
            // using putLong() method
            bb.putLong(23)
                .putLong(24)
                .putLong(30)
                .rewind();
  
            // print the ByteBuffer
            System.out.print("Original ByteBuffer: [ ");
            for (int i = 1; i <= capacity / 8; i++)
                System.out.print(bb.getLong() + " ");
            System.out.print("]");
  
            // Creating a read-only copy of ByteBuffer
            // using asReadOnlyBuffer() method
            ByteBuffer bb1 = bb.asReadOnlyBuffer();
  
            System.out.println("\n\nTrying to put the long value"
                               + " in read-only buffer");
  
            // putting the value in readonly ByteBuffer
            // using putLong() method
            bb1.putLong(234);
        }
  
        catch (BufferOverflowException e) {
  
            System.out.println("Exception throws : " + e);
        }
  
        catch (ReadOnlyBufferException e) {
  
            System.out.println("Exception throws : " + e);
        }
    }
}
输出:
Original ByteBuffer: [ 23 24 30 ]

Trying to put the long value in read only buffer
Exception throws : java.nio.ReadOnlyBufferException

putLong(整数索引,长值)

Java.nio.ByteBuffer 类的 putLong(int index, long value) 方法用于将包含给定八字节值的八个字节以当前字节顺序写入到给定索引处的此缓冲区中。

句法:

public abstract ByteBuffer putLong(int index, long value)

参数:此方法采用以下参数作为参数:

  • index :将写入字节的索引
  • value : 要写入的 int 值

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

异常:此方法抛出以下异常:

  • IndexOutOfBoundsException-如果 index 为负数或不小于缓冲区的限制
  • ReadOnlyBufferException-如果此缓冲区是只读的

以下是说明 putLong(int index, long value) 方法的示例:

示例 1:

// Java program to demonstrate
// putLong() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the ByteBuffer
        int capacity = 24;
  
        // Creating the ByteBuffer
        try {
  
            // creating object of ByteBuffer
            // and allocating size capacity
            ByteBuffer bb = ByteBuffer.allocate(capacity);
  
            // putting the value in ByteBuffer
            // using putLong() at  index 0
            bb.putLong(0, 23);
  
            // putting the value in ByteBuffer
            // using putInt() at  index 8
            bb.putLong(8, 34);
  
            // putting the value in ByteBuffer
            // using putInt() at  index 16
            bb.putLong(16, 27);
  
            // rewinding the ByteBuffer
            bb.rewind();
  
            // print the ByteBuffer
            System.out.print("Original ByteBuffer: [ ");
            for (int i = 1; i <= capacity / 8; i++)
                System.out.print(bb.getLong() + "  ");
            System.out.print("]\n");
        }
  
        catch (IndexOutOfBoundsException e) {
  
            System.out.println("Exception throws : " + e);
        }
  
        catch (ReadOnlyBufferException e) {
  
            System.out.println("Exception throws : " + e);
        }
    }
}
输出:
Original ByteBuffer: [ 23  34  27  ]

示例 2:演示 IndexOutOfBoundsException。

// Java program to demonstrate
// putLong() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the ByteBuffer
        int capacity = 24;
  
        // Creating the ByteBuffer
        try {
  
            // creating object of ByteBuffer
            // and allocating size capacity
            ByteBuffer bb = ByteBuffer.allocate(capacity);
  
            // putting the value in ByteBuffer
            // using putLong() at  index 0
            bb.putLong(0, 23);
  
            // putting the value in ByteBuffer
            // using putInt() at  index 8
            bb.putLong(8, 34);
  
            // putting the value in ByteBuffer
            // using putInt() at  index 16
            bb.putLong(16, 27);
  
            // rewinding the ByteBuffer
            bb.rewind();
  
            // print the ByteBuffer
            System.out.print("Original ByteBuffer: [ ");
            for (int i = 1; i <= capacity / 8; i++)
                System.out.print(bb.getLong() + "  ");
            System.out.print("]\n");
  
            // putting the value in ByteBuffer
            // using putInt() at  index -1
            bb.putInt(-1, 45);
        }
  
        catch (IndexOutOfBoundsException e) {
            System.out.println("\nindex is negative or not smaller "
                               + "than the buffer's limit");
            System.out.println("Exception throws : " + e);
        }
  
        catch (ReadOnlyBufferException e) {
  
            System.out.println("Exception throws : " + e);
        }
    }
}
输出:
Original ByteBuffer: [ 23  34  27  ]

index is negative or not smaller than the buffer's limit
Exception throws : java.lang.IndexOutOfBoundsException

示例 3:演示 ReadOnlyBufferException。

// Java program to demonstrate
// putLong() method
  
import java.nio.*;
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Declaring the capacity of the ByteBuffer
        int capacity = 24;
  
        // Creating the ByteBuffer
        try {
  
            // creating object of ByteBuffer
            // and allocating size capacity
            ByteBuffer bb = ByteBuffer.allocate(capacity);
  
            // Creating a read-only copy of ByteBuffer
            // using asReadOnlyBuffer() method
            ByteBuffer bb1 = bb.asReadOnlyBuffer();
  
            System.out.println("Trying to put the long value"
                               + " in read-only buffer");
  
            // putting the value in readonly ByteBuffer
            // using putLong() method
            bb1.putLong(0, 23);
        }
  
        catch (IndexOutOfBoundsException e) {
  
            System.out.println("Exception throws : " + e);
        }
  
        catch (ReadOnlyBufferException e) {
  
            System.out.println("Exception throws : " + e);
        }
    }
}
输出:
Trying to put the long value in read only buffer
Exception throws : java.nio.ReadOnlyBufferException

参考:

  • https://docs.oracle.com/javase/9/docs/api/ Java/nio/ByteBuffer.html#putLong-long-
  • https://docs.oracle.com/javase/9/docs/api/ Java/nio/ByteBuffer.html#putLong-int-long-