Saturday, February 7, 2026
HomeLanguagesJavaCharset isRegistered() method in Java with Examples

Charset isRegistered() method in Java with Examples

The isRegistered() method is a built-in method of the java.nio.charset checks if a given charset is registered or not under the IANA Charset Registry.

Syntax:

public final boolean isRegistered()

Parameters: The function does not accepts any parameter.

Return Value: The function returns a boolean value. It returns true if it is registered, else it returns false.

Below is the implementation of the above function:

Program 1:




// Java program to demonstrate
// the above function
  
import java.nio.charset.Charset;
import java.util.Iterator;
import java.util.Map;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Generate the Charset
        Charset first
            = Charset.forName("ISO-2022-CN");
  
        // Check if this Charset is registered
        System.out.println(first.isRegistered());
    }
}


Output:

true

Program 2:




// Java program to demonstrate
// the above function
  
import java.nio.charset.Charset;
import java.util.Iterator;
import java.util.Map;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Generate the Charset
        Charset second
            = Charset.forName("x-windows-949");
  
        // Check if this Charset is registered
        System.out.println(second.isRegistered());
    }
}


Output:

false

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

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

1 COMMENT

Most Popular

Dominic
32491 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6863 POSTS0 COMMENTS
Nicole Veronica
11987 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12076 POSTS0 COMMENTS
Shaida Kate Naidoo
6996 POSTS0 COMMENTS
Ted Musemwa
7238 POSTS0 COMMENTS
Thapelo Manthata
6947 POSTS0 COMMENTS
Umr Jansen
6933 POSTS0 COMMENTS