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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。