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