Friday, November 21, 2025
HomeLanguagesJavaCharset equals() method in Java with Examples

Charset equals() method in Java with Examples

The equals() method is a built-in method of the java.nio.charset checks if a given object of charset is equal to another given object of the charset. Two charsets are considered equal if, and only if, they have the same canonical names. A charset is never equal to any other type of object. 

Syntax:  

public final boolean equals(Object other)

Parameters: The function accepts a single mandatory parameter other which specifies the reference object with which it is compared with. 

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

Below is the implementation of the above function:

Program 1:  

Java




// 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)
    {
        // First charset
        Charset first = Charset.forName("ISO-2022-CN");
 
        // Second charset
        Charset second = Charset.forName("UTF-8");
 
        System.out.println(first.equals(second));
    }
}


Output: 

false

 

Program 2: 

Java




// 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)
    {
 
        // First charset
        Charset first = Charset.forName("UTF-8");
 
        // Second charset
        Charset second = Charset.forName("UTF-8");
 
        System.out.println(first.equals(second));
    }
}


Output: 

true

 

Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/Charset.html#equals-java.lang.Object-
 

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

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11997 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7166 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS