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
相關用法
- Java CharsetEncoder reset()用法及代碼示例
- Java CharsetEncoder replacement()用法及代碼示例
- Java CharsetEncoder charset()用法及代碼示例
- Java CharsetEncoder malformedInputAction()用法及代碼示例
- Java CharsetEncoder unmappableCharacterAction()用法及代碼示例
- Java CharsetEncoder maxBytesPerChar()用法及代碼示例
- Java CharsetEncoder isLegalReplacement()用法及代碼示例
- Java CharsetEncoder encode(CharBuffer in)用法及代碼示例
- Java Java lang.Long.numberOfTrailingZeros()用法及代碼示例
- Java Java lang.Long.lowestOneBit()用法及代碼示例
- Java Java.util.Collections.rotate()用法及代碼示例
- Java Java.util.Collections.disjoint()用法及代碼示例
- Java Java lang.Long.highestOneBit()用法及代碼示例
- Java Java lang.Long.numberOfLeadingZeros()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 CharsetEncoder averageBytesPerChar() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。