CharsetEncoder reset() method in Java with Examples Last Updated : 29 Mar, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 // 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 // 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() Comment More infoAdvertise with us Next Article CharsetEncoder reset() method in Java with Examples G gopaldave Follow Improve Article Tags : Java Java-Functions Java-NIO package Java-CharsetEncoder Practice Tags : Java Similar Reads CharsetDecoder reset() method in Java with Examples The reset() method is a built-in method of the java.nio.charset.CharsetDecoder class which resets this CharsetDecoder and clears its internal state. Syntax: public final CharsetDecoder reset() Parameters: The function does not accepts any parameter. Return Value: The function returns this CharsetDec 1 min read CharsetEncoder replacement() method in Java with Examples The replacement() method is a built-in method of the java.nio.charset.CharsetEncoder returns a byte array which is the replacement value of the encoder. Syntax: public final byte[] replacement() Parameters: The function does not accepts any parameter. Return Value: The function returns this encoder' 1 min read CharsetDecoder replacement() method in Java with Examples The replacement() method is a built-in method of the java.nio.charset.CharsetDecoder class returns this decoder's replacement value. The replacement value needs to be set inorder to get a valid replacement value. Syntax: public final Charset replacement() Parameters: The function does not accepts an 1 min read CharArrayReader reset() method in Java with Examples The reset() method of CharArrayReader Class in Java is used to reset the stream. After reset, if the stream has been marked, then this method attempts to reposition it at the mark, else it will try to position it to the starting. Syntax: public void reset() Parameters: This method do not accepts any 3 min read Matcher reset(CharSequence) method in Java with Examples The reset(CharSequence input) method of Matcher Class is used to reset this matcher and insert the input String passed as the parameter to this matcher. Syntax: public Matcher reset(CharSequence input) Parameters: This method takes the parameter input which is the String to be inserted into matcher 2 min read Like