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


Java CharsetEncoder averageBytesPerChar()用法及代码示例


averageBytesPerChar()方法是java.nio.charset.CharsetEncoder的内置方法,该方法返回将为所提供的每个输入字符生成的平均字节数。因此,试探值用于估计给定输入序列所需的输出缓冲区的大小。

用法

public final float averageBytesPerChar()

参数:该函数不接受任何参数。


返回值:该函数返回为每个输入字符产生的平均字节数。

下面是上述函数的实现:

示例1:

// Java program to implement 
// the above function 
import java.nio.CharBuffer; 
import java.nio.charset.Charset; 
import java.nio.charset.CharsetEncoder; 
  
public class Main { 
    public static void main(String[] args) throws Exception 
    { 
  
        // Gets the new encoder 
        CharsetEncoder encoder = Charset.forName("US-ASCII").newEncoder(); 
  
        // Prints the average bytes 
        System.out.println(encoder.averageBytesPerChar()); 
    } 
}
输出:
1.0

示例2:

// Java program to implement 
// the above function 
import java.nio.CharBuffer; 
import java.nio.charset.Charset; 
import java.nio.charset.CharsetEncoder; 
  
public class Main { 
    public static void main(String[] args) throws Exception 
    { 
  
        // Gets the new encoder 
        CharsetEncoder encoder = Charset.forName("UTF8").newEncoder(); 
  
        // Prints the average bytes 
        System.out.println(encoder.averageBytesPerChar()); 
    } 
}
输出:
1.1

参考: https://docs.oracle.com/javase/10/docs/api/java/nio/charset/CharsetEncoder.html#averageBytesPerChar()



相关用法


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