Java中的 CharsetEncoder reset() 方法及示例
reset()方法是Java.nio.charset.CharsetEncoder的内置方法,用于重置此编码器,并清除所有内部状态(如果有)。它还重置与字符集无关的状态,并调用 implReset 方法以执行任何特定于字符集的重置操作。
语法:
public final CharsetEncoder reset()
参数:该函数不接受任何参数。
返回值:该函数重置特定编码器。
下面是上述函数的实现:
方案一:
// 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
方案二:
// 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: Java/nio/charset/CharsetEncoder.html#reset()