Saturday, May 16, 2026
HomeLanguagesJavaCharset newDecoder() method in Java with Examples

Charset newDecoder() method in Java with Examples

The newDecoder() method is a built-in method of the java.nio.charset constructs a new decoder for this charset.
.

Syntax:

public abstract CharsetDecoder newDecoder()

Parameters: The function does not accepts any parameter.

Return Value: The function returns a new decoder for this charset

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)
    {
  
        // Creates charset
        Charset Charset1 = Charset.forName("UTF8");
  
        // Creates Decoder
        CharsetDecoder Decoder = Charset1.newDecoder();
  
        // Prints decoder
        System.out.println(Decoder);
    }
}


Output:

sun.nio.cs.UTF_8$Decoder@232204a1

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)
    {
  
        // Creates charset
        Charset Charset1 = Charset.forName("UTF-16");
  
        // Creates Decoder
        CharsetDecoder Decoder = Charset1.newDecoder();
  
        // Prints decoder
        System.out.println(Decoder);
    }
}


Output:

sun.nio.cs.UTF_16$Decoder@232204a1

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

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

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS