Sunday, November 23, 2025
HomeLanguagesJavaCharsetEncoder reset() method in Java with Examples

CharsetEncoder reset() method in Java with Examples

The reset() method is a built-in method of the java.nio.charset.CharsetEncoder resets this encoder, and clears all the internal states if there are any. It also resets charset-independent state and also invokes the implReset method in order to perform any charset-specific reset actions.

Syntax:

public final CharsetEncoder reset()

Parameters: The function does not accepts any parameter.

Return Value: The function resets a particular encoder.

Below is the implementation of the above function:

Program 1:




// Java program to implement
// the above function
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
  
public class Main {
    public static void main(String[] args) throws Exception
    {
        // Gets the encoder
        CharsetEncoder encoder
            = Charset.forName("US-ASCII")
                  .newEncoder();
  
        // It will reset the encoder
        // and clear all internal activities if there are
        encoder.reset();
  
        // Prints the encoder after resetting it
        System.out.println(encoder);
    }
}


Output:

sun.nio.cs.US_ASCII$Encoder@232204a1

Program 2:




// Java program to implement
// the above function
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
  
public class Main {
    public static void main(String[] args) throws Exception
    {
        // Gets the encoder
        CharsetEncoder encoder
            = Charset.forName("UTF8")
                  .newEncoder();
  
        // It will reset the encoder
        // and clear all internal activities if there are
        encoder.reset();
  
        // Prints the encoder after resetting it
        System.out.println(encoder);
    }
}


Output:

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

Reference: https://docs.oracle.com/javase/10/docs/api/java/nio/charset/CharsetEncoder.html#reset()

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11932 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6852 POSTS0 COMMENTS