Last Updated : 28 Mar, 2019
The
name()method is a built-in method of the
java.nio.charsetreturns 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
// 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());
}
}
Program 2: Java
// 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());
}
}
Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/Charset.html#name--
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4