Java CharsetEncoder reset()方法及示例
reset() 方法是 java.nio.charset.CharsetEncoder 的一个内置方法,可以重置这个编码器,并清除所有的内部状态(如果有的话)。它还会重置与字符集无关的状态,并调用 implReset 方法,以执行任何字符集特定的重置操作。
语法:
public final CharsetEncoder reset()
参数 :该函数不接受任何参数。
返回值 :该函数重置了一个特定的编码器。
下面是上述函数的实现。
程序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);
}
}
输出。
sun.nio.cs.US_ASCII$Encoder@232204a1
程序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);
}
}
输出。
sun.nio.cs.UTF_8$Encoder@232204a1
**参考资料: **https://docs.oracle.com/javase/10/docs/api/java/nio/charset/CharsetEncoder.html#reset()