Java中的 CharsetEncoder malformedInputAction() 方法及示例
malformedInputAction ()方法是Java.nio.charset.CharsetEncoder的内置方法,用于返回此编码器针对错误输入错误的当前操作。这样返回的 CodingErrorAction 有 IGNORE、REPLACE 和 REPORT 三种类型。
语法:
public CodingErrorAction malformedInputAction()
参数:该函数不接受任何参数。
返回值:该函数返回当前格式错误的输入操作,该操作永远不会为空。
下面是上述函数的实现:
方案一:
// 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.malformedInputAction());
}
}
输出:
REPORT
方案二:
// 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.malformedInputAction());
}
}
输出:
REPORT
参考: https: Java/nio/charset/CharsetEncoder.html#malformedInputAction()