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


Java Charset forName()用法及代码示例


forName()方法是java.nio.charset的内置方法,返回命名字符集的字符集对象。在此函数中,我们传递规范名称或别名,并返回其各自的字符集名称。

用法

public static Charset forName?(String charsetName)

参数:该函数接受单个强制性参数charsetName,该参数指定要返回其对象名称的规范名称或别名。


返回值:该函数返回命名字符集的字符集对象。

错误和异常:该函数引发三个异常,如下所示:

  • IllegalCharsetNameException:如果给定的字符集名称不合法,则抛出该异常
  • IllegalArgumentException:如果给定的charsetName为null,则抛出该异常
  • UnsupportedCharsetException:如果在此Java虚拟机实例中不支持命名字符集,则抛出该异常

下面是上述函数的实现:

示例1:

// Java program to demonstrate 
// the above function 
import java.nio.charset.Charset; 
import java.util.Iterator; 
import java.util.Map; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Gets the charset 
        Charset first = Charset.forName("ISO-2022-CN"); 
  
        // Prints the object 
        System.out.println("The name for ISO-2022-CN is " + first); 
    } 
}
输出:
The name for ISO-2022-CN is ISO-2022-CN

示例2:

// Java program to demonstrate 
// the above function 
import java.nio.charset.Charset; 
import java.util.Iterator; 
import java.util.Map; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Gets the charset 
        Charset first = Charset.forName("UTF16"); 
  
        // Prints the object 
        System.out.println("The name for UTF16 is " + first); 
    } 
}
输出:
The name for UTF16 is UTF-16

程序3

// Java program to demonstrate 
// the above function 
import java.nio.charset.Charset; 
import java.util.Iterator; 
import java.util.Map; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        try { 
  
            // Gets the charset 
            Charset first = Charset.forName(""); 
  
            // Prints the object 
            System.out.println("The name for null is " + first); 
        } 
        catch (Exception e) { 
  
            // Prints the exception 
            System.out.println("The exception is: " + e); 
        } 
    } 
}
输出:
The exception is: java.nio.charset.IllegalCharsetNameException:

程序4

// Java program to demonstrate 
// the above function 
import java.nio.charset.Charset; 
import java.util.Iterator; 
import java.util.Map; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        try { 
  
            // Gets the charset 
            Charset first = Charset.forName("gopal"); 
  
            // Prints the object 
            System.out.println("The name for gopal is " + first); 
        } 
        catch (Exception e) { 
  
            // Prints the exception 
            System.out.println("The exception is: " + e); 
        } 
    } 
}
输出:
The exception is: java.nio.charset.UnsupportedCharsetException: gopal

参考: https://docs.oracle.com/javase/10/docs/api/java/nio/charset/Charset.html#forName(java.lang.String)



相关用法


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