Java CharsetDecoder replacement()方法及示例

Java CharsetDecoder replacement()方法及示例

replacement() 方法是 java.nio.charset.CharsetDecoder类 的一个内置方法,用于返回这个解码器的替换值。为了得到一个有效的替换值,需要对替换值进行设置。

语法:

public final Charset replacement()

参数 :该函数不接受任何参数。

返回值 :该函数返回该解码器的替换值。

下面是上述函数的实现。

程序1 :

// Java program to demonstrate
// the above function
  
import java.nio.charset.*;
import java.util.Iterator;
import java.util.Map;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Gets the charset
        Charset charset = Charset.forName("ISO-2022-CN");
  
        // Get the CharsetDecoder
        CharsetDecoder decoder = charset.newDecoder();
  
        // Prints the CharsetDecoder
        System.out.println("CharsetDecoder: " + decoder);
  
        System.out.println("Replacement Value: "
                           + decoder.replacement());
    }
}

输出:

CharsetDecoder: sun.nio.cs.ext.ISO2022_CN$Decoder@232204a1
Replacement Value: ?

程序2

// Java program to demonstrate
// the above function
  
import java.nio.charset.*;
import java.util.Iterator;
import java.util.Map;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Gets the charset
        Charset charset = Charset.forName("x-windows-949");
  
        // Get the CharsetDecoder
        CharsetDecoder decoder = charset.newDecoder();
  
        // Prints the CharsetDecoder
        System.out.println("CharsetDecoder: " + decoder);
  
        System.out.println("Replacement Value: "
                           + decoder.replacement());
    }
}

输出:

CharsetDecoder: sun.nio.cs.ext.DoubleByte$Decoder@232204a1
Replacement Value: ?

参考资料: https://docs.oracle.com/javase/9/docs/api/java/nio/charset/CharsetDecoder.html#replacement-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Java 参考指南