Thursday, September 25, 2025
HomeLanguagesJavaCharsetDecoder charset() in Java with examples

CharsetDecoder charset() in Java with examples

CharsetDecoder.charset() is an in-built method in Java of CharsetDecoder class that returns the charset that created this decoder.

Syntax:

public final Charset charset()

Parameter: The function does not accepts any parameter.

Return value: The function returns the decoder’s charset.

Program below demonstrate the above mentioned function:

Program 1:




// Java program below demonstrate
// CharsetDecoder.charset function
  
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
  
public class Main {
    public static void main(String[] argv) throws Exception
    {
        Charset charset = Charset.forName("ISO-8859-1");
  
        // initialising CharsetDecoder cd
        CharsetDecoder cd = charset.newDecoder();
        // print charset of decoder cd
        System.out.println(cd.charset());
    }
}


Output:

ISO-8859-1

Program 2:




// Java program below demonstrate
// CharsetDecoder.charset function
  
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
  
public class Main {
    public static void main(String[] argv) throws Exception
    {
        Charset charset = Charset.forName("ISO-8859-2");
  
        // initialising CharsetDecoder cd
        CharsetDecoder cd = charset.newDecoder();
        // print charset of decoder cd
        System.out.println(cd.charset());
    }
}


Output:

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

Most Popular

Dominic
32320 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6682 POSTS0 COMMENTS
Nicole Veronica
11854 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11910 POSTS0 COMMENTS
Shaida Kate Naidoo
6795 POSTS0 COMMENTS
Ted Musemwa
7071 POSTS0 COMMENTS
Thapelo Manthata
6754 POSTS0 COMMENTS
Umr Jansen
6762 POSTS0 COMMENTS