Friday, May 22, 2026
HomeLanguagesJavaCharsetDecoder averageCharsPerByte() method in Java with Examples

CharsetDecoder averageCharsPerByte() method in Java with Examples

The averageCharsPerByte() method is a built-in method of the java.nio.charset.CharsetDecoder class which returns the average number of characters that will be produced for each byte of input. This heuristic value may be used to estimate the size of the output buffer required for a given input sequence.

Syntax:

public final float averageCharsPerByte()

Parameters: The function does not accepts any parameter.

Return Value: The function returns the average number of characters that will be produced for each byte of input.

Below is the implementation of the above function:

Program 1:




// Java program to demonstrate
// the above function
  
import java.nio.charset.*;
import java.util.Iterator;
import java.util.Map;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Gets the charset
        Charset charset = Charset.forName("ISO-2022-CN");
  
        // Get the CharsetDecoder
        CharsetDecoder decoder = charset.newDecoder();
  
        // Prints the averageCharsPerByte
        System.out.println("The averageCharsPerByte "
                           + "for ISO-2022-CN is "
                           + decoder.averageCharsPerByte());
    }
}


Output:

The averageCharsPerByte for ISO-2022-CN is 1.0

Program 2:




// Java program to demonstrate
// the above function
  
import java.nio.charset.*;
import java.util.Iterator;
import java.util.Map;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Gets the charset
        Charset charset = Charset.forName("x-windows-949");
  
        // Get the CharsetDecoder
        CharsetDecoder decoder = charset.newDecoder();
  
        // Prints the averageCharsPerByte
        System.out.println("The averageCharsPerByte "
                           + "for ISO-2022-CN is "
                           + decoder.averageCharsPerByte());
    }
}


Output:

The averageCharsPerByte for ISO-2022-CN is 0.5

Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/CharsetDecoder.html#averageCharsPerByte–

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS