📌  相关文章
📜  Java中的 CharsetEncoder replacement() 方法及示例

📅  最后修改于: 2022-05-13 01:55:27.478000             🧑  作者: Mango

Java中的 CharsetEncoder replacement() 方法及示例

replacement()方法是Java.nio.charset.CharsetEncoder的内置方法,返回一个字节数组,它是编码器的替换值。

语法

public final byte[] replacement()

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

返回值:该函数返回此编码器的当前替换,它永远不会为空,也永远不会为空。

下面是上述函数的实现:

方案一:

// Java program to implement
// the above function
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
  
public class Main {
    public static void main(String[] args) throws Exception
    {
        // Gets the encoder
        CharsetEncoder encoder = Charset.forName("UTF16").newEncoder();
  
        // Prints byte array representing
        // the replacement value
        System.out.println(encoder.replacement());
    }
}
输出:
[B@232204a1

方案二:

// Java program to implement
// the above function
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
  
public class Main {
    public static void main(String[] args) throws Exception
    {
        // Gets the encoder
        CharsetEncoder encoder = Charset.forName("US-ASCII").newEncoder();
  
        // Prints byte array representing
        // the replacement value
        System.out.println(encoder.replacement());
    }
}
输出:
[B@232204a1

参考: https: Java/nio/charset/CharsetEncoder.html#replacement()