Open In App

Charset newDecoder() method in Java with Examples

Last Updated : 28 Mar, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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–



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads