Java Charset newDecoder()方法及示例

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-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Java 参考指南