當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。