Saturday, September 6, 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
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11805 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6753 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS