Java中的 CharsetEncoder maxBytesPerChar() 方法及示例
maxBytesPerChar()方法是Java.nio.charset.CharsetEncoder的内置方法,它返回为输入的每个字符生成的最大字节数。因此返回的值用于获取给定输入语句在最坏情况下所需的输出缓冲区的大小。
语法:
public final float maxBytesPerChar()
参数:该函数不接受任何参数。
返回值:该函数返回每个输入字符将产生的最大字节数
下面是上述函数的实现:
方案一:
// 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 encoder
CharsetEncoder encoder = Charset.forName("UTF8").newEncoder();
// Prints max bytes per char
System.out.println(encoder.maxBytesPerChar());
}
}
输出:
3.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 encoder
CharsetEncoder encoder = Charset.forName("US-ASCII").newEncoder();
// Prints max bytes per char
System.out.println(encoder.maxBytesPerChar());
}
}
输出:
1.0
参考: https: Java/nio/charset/CharsetEncoder.html#maxBytesPerChar()