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-