📜  Java中的 CharsetEncoder averageBytesPerChar() 方法及示例

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

Java中的 CharsetEncoder averageBytesPerChar() 方法及示例

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

语法

public final float averageBytesPerChar()

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

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

下面是上述函数的实现:

方案一:

// 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

方案二:

// 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: Java/nio/charset/CharsetEncoder.html#averageBytesPerChar()