Java CharsetDecoder detectedCharset()方法及示例
detectedCharset() 方法是 java.nio.charset.CharsetDecoder类 的一个内置方法,用于检索该解码器所检测到的字符集。这个方法的默认实现总是抛出一个 UnsupportedOperationException。 它应该被自动检测解码器重载,以便在确定输入字符集后返回true。
语法:
public Charset detectedCharset()
参数 :该函数不接受任何参数。
返回值 :该函数返回被该解码器检测到的字符集。
异常: 如果该解码器没有实现自动检测字符集,则抛出UnsupportedOperationException;如果读取的字节数不足以确定字符集,则抛出 IllegalStateException 。
下面是上述函数的实现。
程序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("CharsetDecoder: " + decoder);
try {
System.out.println("detected Charset: "
+ decoder.detectedCharset());
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
CharsetDecoder: sun.nio.cs.ext.ISO2022_CN$Decoder@232204a1
java.lang.UnsupportedOperationException
程序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("CharsetDecoder: " + decoder);
try {
System.out.println("detected Charset: "
+ decoder.detectedCharset());
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
CharsetDecoder: sun.nio.cs.ext.DoubleByte$Decoder@232204a1
java.lang.UnsupportedOperationException
参考资料: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/CharsetDecoder.html#detectedCharset-