当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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–



相关用法


注:本文由纯净天空筛选整理自ShubhamMaurya3大神的英文原创作品 CharsetDecoder detectedCharset() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。