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


Java Charset newDecoder()用法及代碼示例


newDecoder()方法是java.nio.charset的內置方法,為該字符集構造一個新的解碼器。

用法

public abstract CharsetDecoder newDecoder()

參數:該函數不接受任何參數。


返回值:該函數為此字符集返回一個新的解碼器

下麵是上述函數的實現:

示例1:

// Java program to demonstrate 
// the above function 
  
import java.nio.charset.Charset; 
import java.nio.charset.CharsetDecoder; 
import java.nio.charset.CharsetEncoder; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Creates charset 
        Charset Charset1 = Charset.forName("UTF8"); 
  
        // Creates Decoder 
        CharsetDecoder Decoder = Charset1.newDecoder(); 
  
        // Prints decoder 
        System.out.println(Decoder); 
    } 
}
輸出:
sun.nio.cs.UTF_8$Decoder@232204a1

示例2:

// Java program to demonstrate 
// the above function 
  
import java.nio.charset.Charset; 
import java.nio.charset.CharsetDecoder; 
import java.nio.charset.CharsetEncoder; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Creates charset 
        Charset Charset1 = Charset.forName("UTF-16"); 
  
        // Creates Decoder 
        CharsetDecoder Decoder = Charset1.newDecoder(); 
  
        // Prints decoder 
        System.out.println(Decoder); 
    } 
}
輸出:
sun.nio.cs.UTF_16$Decoder@232204a1

參考: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/Charset.html#newDecoder–



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Charset newDecoder() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。