当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ByteBuffer putShort()用法及代码示例


putShort(int value)

java.nio.ByteBuffer类的putShort(int value)方法用于按当前字节顺序将两个包含给定short值的字节按当前字节顺序写入此缓冲区的当前位置,然后将该位置加2。

用法:

public abstract ByteBuffer putShort(short value)

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


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

异常:此方法引发以下异常:

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

以下示例说明了putShort(short value)方法:

范例1:

// Java program to demonstrate 
// putShort() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the ByteBuffer 
        int capacity = 6; 
  
        // Creating the ByteBuffer 
        try { 
  
            // creating object of ByteBuffer 
            // and allocating size capacity 
            ByteBuffer bb = ByteBuffer.allocate(capacity); 
  
            // putting the value in ByteBuffer 
            // using putShort() method 
            bb.putShort((short)0x041A) 
                .putShort((short)0x042A) 
                .putShort((short)0x043A) 
                .rewind(); 
  
            // print the ByteBuffer 
            System.out.print("Original ByteBuffer:[ "); 
            for (int i = 1; i <= capacity / 2; i++) 
                System.out.print(bb.getShort() + " "); 
            System.out.print("]"); 
        } 
  
        catch (BufferOverflowException e) { 
  
            System.out.println("Exception throws:" + e); 
        } 
  
        catch (ReadOnlyBufferException e) { 
  
            System.out.println("Exception throws:" + e); 
        } 
    } 
}
输出:
Original ByteBuffer:[ 1050 1066 1082 ]

范例2:演示BufferOverflowException。

// Java program to demonstrate 
// putShort() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the ByteBuffer 
        int capacity = 6; 
  
        // Creating the ByteBuffer 
        try { 
  
            // creating object of ByteBuffer 
            // and allocating size capacity 
            ByteBuffer bb = ByteBuffer.allocate(capacity); 
  
            // putting the value in ByteBuffer 
            // using putShort() method 
            bb.putShort((short)0x041A) 
                .putShort((short)0x042A) 
                .putShort((short)0x043A) 
                .rewind(); 
  
            // print the ByteBuffer 
            System.out.print("Original ByteBuffer:[ "); 
            for (int i = 1; i <= capacity / 2; i++) 
                System.out.print(bb.getShort() + " "); 
            System.out.print("]"); 
  
            // putting the value in ByteBuffer 
            // using putInt() method 
            bb.putShort((short)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:[ 1050 1066 1082 ]

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

范例3:演示ReadOnlyBufferException。

// Java program to demonstrate 
// putShort() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the ByteBuffer 
        int capacity = 6; 
  
        // Creating the ByteBuffer 
        try { 
  
            // creating object of ByteBuffer 
            // and allocating size capacity 
            ByteBuffer bb = ByteBuffer.allocate(capacity); 
  
            // putting the value in ByteBuffer 
            // using putShort() method 
            bb.putShort((short)0x041A) 
                .putShort((short)0x042A) 
                .putShort((short)0x043A) 
                .rewind(); 
  
            // print the ByteBuffer 
            System.out.print("Original ByteBuffer:[ "); 
            for (int i = 1; i <= capacity / 2; i++) 
                System.out.print(bb.getShort() + " "); 
            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 short value"
                               + " in read-only buffer"); 
  
            // putting the value in readonly ByteBuffer 
            // using putShort() method 
            bb1.putShort((short)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:[ 1050 1066 1082 ]

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

putShort(int index, short value)

java.nio.ByteBuffer类的putShort(int index,short value)方法用于按给定索引将包含给定两个值的两个字节(按当前字节顺序)写入当前缓冲区中。


用法:

public abstract ByteBuffer putShort(int index, short value)

参数:此方法将以下参数作为参数:

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

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

异常:此方法引发以下异常:

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

以下示例说明了putShort(int index,short value)方法:

范例1:

// Java program to demonstrate 
// putShort() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the ByteBuffer 
        int capacity = 6; 
  
        // Creating the ByteBuffer 
        try { 
  
            // creating object of ByteBuffer 
            // and allocating size capacity 
            ByteBuffer bb = ByteBuffer.allocate(capacity); 
  
            // putting the value in ByteBuffer 
            // using putShort() at  index 0 
            bb.putShort(0, (short)23); 
  
            // putting the value in ByteBuffer 
            // using putShort() at  index 2 
            bb.putShort(2, (short)34); 
  
            // putting the value in ByteBuffer 
            // using putShort() at  index 4 
            bb.putShort(4, (short)27); 
  
            // rewinding the ByteBuffer 
            bb.rewind(); 
  
            // print the ByteBuffer 
            System.out.print("Original ByteBuffer:[ "); 
            for (int i = 1; i <= capacity / 2; i++) 
                System.out.print(bb.getShort() + "  "); 
            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 
// putShort() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the ByteBuffer 
        int capacity = 6; 
  
        // Creating the ByteBuffer 
        try { 
  
            // creating object of ByteBuffer 
            // and allocating size capacity 
            ByteBuffer bb = ByteBuffer.allocate(capacity); 
  
            // putting the value in ByteBuffer 
            // using putShort() at  index 0 
            bb.putShort(0, (short)23); 
  
            // putting the value in ByteBuffer 
            // using putShort() at  index 2 
            bb.putShort(2, (short)34); 
  
            // putting the value in ByteBuffer 
            // using putShort() at  index 4 
            bb.putShort(4, (short)27); 
  
            // rewinding the ByteBuffer 
            bb.rewind(); 
  
            // print the ByteBuffer 
            System.out.print("Original ByteBuffer:[ "); 
            for (int i = 1; i <= capacity / 2; i++) 
                System.out.print(bb.getShort() + "  "); 
            System.out.print("]\n"); 
  
            // putting the value in ByteBuffer 
            // using putShort() at  index -1 
            bb.putShort(-1, (short)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 
// putShort() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the ByteBuffer 
        int capacity = 6; 
  
        // 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 int value"
                               + " in read-only buffer"); 
  
            // putting the value in readonly ByteBuffer 
            // using putInt() method 
            bb1.putInt(0, 23); 
        } 
  
        catch (IndexOutOfBoundsException e) { 
  
            System.out.println("Exception throws:" + e); 
        } 
  
        catch (ReadOnlyBufferException e) { 
  
            System.out.println("Exception throws:" + e); 
        } 
    } 
}
输出:
Trying to put the int value in read only buffer
Exception throws:java.nio.ReadOnlyBufferException

参考:



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 ByteBuffer putShort() methods in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。