當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java CharsetDecoder averageCharsPerByte()用法及代碼示例


averageCharsPerByte()方法是java.nio.charset.CharsetDecoder類的內置方法,該方法返回為每個輸入字節生成的平均字符數。該啟發式值可以用於估計給定輸入序列所需的輸出緩衝器的大小。

用法

public final float averageCharsPerByte()

參數:該函數不接受任何參數。


返回值:該函數返回將為每個輸入字節生成的平均字符數。

下麵是上述函數的實現:

示例1:

// Java program to demonstrate 
// the above function 
  
import java.nio.charset.*; 
import java.util.Iterator; 
import java.util.Map; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Gets the charset 
        Charset charset = Charset.forName("ISO-2022-CN"); 
  
        // Get the CharsetDecoder 
        CharsetDecoder decoder = charset.newDecoder(); 
  
        // Prints the averageCharsPerByte 
        System.out.println("The averageCharsPerByte "
                           + "for ISO-2022-CN is "
                           + decoder.averageCharsPerByte()); 
    } 
}
輸出:
The averageCharsPerByte for ISO-2022-CN is 1.0

示例2:

// Java program to demonstrate 
// the above function 
  
import java.nio.charset.*; 
import java.util.Iterator; 
import java.util.Map; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Gets the charset 
        Charset charset = Charset.forName("x-windows-949"); 
  
        // Get the CharsetDecoder 
        CharsetDecoder decoder = charset.newDecoder(); 
  
        // Prints the averageCharsPerByte 
        System.out.println("The averageCharsPerByte "
                           + "for ISO-2022-CN is "
                           + decoder.averageCharsPerByte()); 
    } 
}
輸出:
The averageCharsPerByte for ISO-2022-CN is 0.5

參考: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/CharsetDecoder.html#averageCharsPerByte–



相關用法


注:本文由純淨天空篩選整理自ShubhamMaurya3大神的英文原創作品 CharsetDecoder averageCharsPerByte() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。