Friday, September 5, 2025
HomeLanguagesJavaCharset name() method in Java with Examples

Charset name() method in Java with Examples

The name() method is a built-in method of the java.nio.charset returns the charset’s canonical name.

Syntax:

public final String name()

Parameters: The function does not accepts any parameter.

Return Value: The function returns the charset’s canonical name.

Below is the implementation of the above function:

Program 1:




// Java program to demonstrate
// the above function
  
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CharsetEncoder;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Gets charset
        Charset Charset1 = Charset.forName("UTF8");
  
        // Prints it
        System.out.println(Charset1.name());
    }
}


Output:

UTF-8

Program 2:




// Java program to demonstrate
// the above function
  
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CharsetEncoder;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Gets charset
        Charset Charset1 = Charset.forName("UTF16");
  
        // Prints it
        System.out.println(Charset1.name());
    }
}


Output:

UTF-16

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

RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6750 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS