Java CharsetEncoder unmappableCharacterAction()方法及示例
unmappableCharacterAction() 方法是 java.nio.charset.CharsetEncoder 的一个内置方法,用于返回该编码器当前对不可应用字符错误的操作。CodingErrorAction有三种类型:IGNORE、REPLACE和REPORT。
语法:
public CodingErrorAction unmappableCharacterAction()
参数 :该函数不接受任何参数。
返回值 :该函数返回当前的unmappable-character action,它绝不是空的。
下面是上述函数的实现。
程序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("UTF16").newEncoder();
// Prints CodingErrorAction
System.out.println(encoder.unmappableCharacterAction());
}
}
输出。
REPORT
程序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("US-ASCII").newEncoder();
// Prints CodingErrorAction
System.out.println(encoder.unmappableCharacterAction());
}
}
输出。
REPORT
**参考资料: **https://docs.oracle.com/javase/10/docs/api/java/nio/charset/CharsetEncoder.html#unmappableCharacterAction()