Sunday, December 14, 2025
HomeLanguagesJavaCharsetEncoder averageBytesPerChar() method in Java with Examples

CharsetEncoder averageBytesPerChar() method in Java with Examples

The averageBytesPerChar() method is a built-in method of the java.nio.charset.CharsetEncoder which returns the average number of bytes that will be produced for each character of input which is provided. The heuristic value thus is used to estimate the size of the output buffer required for a given input sequence.

Syntax:

public final float averageBytesPerChar()

Parameters: The function does not accepts any parameter.

Return Value: The function returns the average number of bytes that is produced for each character of input.

Below is the implementation of the above function:

Program 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());
    }
}


Output:

1.0

Program 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());
    }
}


Output:

1.1

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

RELATED ARTICLES

Most Popular

Dominic
32447 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6816 POSTS0 COMMENTS
Nicole Veronica
11953 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12031 POSTS0 COMMENTS
Shaida Kate Naidoo
6951 POSTS0 COMMENTS
Ted Musemwa
7202 POSTS0 COMMENTS
Thapelo Manthata
6898 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS