Java CharsetDecoder reset()方法及示例
reset() 方法是 java.nio.charset.CharsetDecoder类 的一个内置方法,用于重置这个CharsetDecoder并清除其内部状态。
语法:
public final CharsetDecoder reset()
参数 :该函数不接受任何参数。
返回值 :该函数在重设后返回该CharsetDecoder。
下面是上述函数的实现。
程序1 :
// Java program to demonstrate
// the above function
import java.nio.charset.*;
import java.util.Iterator;
import java.util.Map;
public class GFG {
public static void main(String[] args)
{
// Gets the charset
Charset charset
= Charset.forName("ISO-2022-CN");
// Get the CharsetDecoder
CharsetDecoder decoder
= charset.newDecoder();
// Prints the CharsetDecoder
System.out.println("Before reset: "
+ decoder);
// Reset the CharsetDecoder
System.out.println("After reset: "
+ decoder.reset());
}
}
输出:
Before reset: sun.nio.cs.ext.ISO2022_CNDecoder@232204a1
After reset: sun.nio.cs.ext.ISO2022_CNDecoder@232204a1
程序2
// Java program to demonstrate
// the above function
import java.nio.charset.*;
import java.util.Iterator;
import java.util.Map;
public class GFG {
public static void main(String[] args)
{
// Gets the charset
Charset charset
= Charset.forName("x-windows-949");
// Get the CharsetDecoder
CharsetDecoder decoder
= charset.newDecoder();
// Prints the CharsetDecoder
System.out.println("Before reset: "
+ decoder);
// Reset the CharsetDecoder
System.out.println("After reset: "
+ decoder.reset());
}
}
输出:
Before reset: sun.nio.cs.ext.DoubleByteDecoder@232204a1
After reset: sun.nio.cs.ext.DoubleByteDecoder@232204a1
参考资料: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/CharsetDecoder.html#reset-