Java中的 CharsetDecoder reset() 方法及示例
reset()方法是Java.nio.charset.CharsetDecoder 类的内置方法,它重置此 CharsetDecoder 并清除其内部状态。
语法:
public final CharsetDecoder reset()
参数:该函数不接受任何参数。
返回值:该函数在重置后返回此 CharsetDecoder。
下面是上述函数的实现:
方案一:
// 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_CN$Decoder@232204a1
After reset: sun.nio.cs.ext.ISO2022_CN$Decoder@232204a1
方案二:
// 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.DoubleByte$Decoder@232204a1
After reset: sun.nio.cs.ext.DoubleByte$Decoder@232204a1
参考: https://docs.oracle.com/javase/9/docs/api/ Java/nio/charset/CharsetDecoder.html#reset–