當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java CharsetEncoder isLegalReplacement()用法及代碼示例


isLegalReplacement()方法是java.nio.charset.CharsetEncoder的內置方法,用於指示給定的字節數組是否是此編碼器的合法替換值。如果可以將替換解碼為一個或多個16位Unicode字符,則替換是合法的。

用法

public boolean isLegalReplacement(byte[] repl)

參數:該函數接受必需的參數repl,該參數指定要測試的字節數組。


返回值:該函數返回一個布爾值。如果字節數組是編碼器的合法替換,則返回true,否則返回false。

下麵是上述函數的實現:

示例1:

// 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("UTF8").newEncoder(); 
  
        // Prints if legal or not 
        System.out.println(encoder.isLegalReplacement(new byte[] {})); 
    } 
}
輸出:
true

示例2:

// 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 if legal or not 
        System.out.println(encoder.isLegalReplacement(new byte[] {})); 
    } 
}
輸出:
true

參考: https://docs.oracle.com/javase/10/docs/api/java/nio/charset/CharsetEncoder.html#isLegalReplacement(byte%5B%5D)



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 CharsetEncoder isLegalReplacement() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。