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


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


reset()方法是java.nio.charset.CharsetEncoder的內置方法,將重置此編碼器,並清除所有內部狀態(如果有)。它還會重置獨立於字符集的狀態,並調用implReset方法以執行任何特定於字符集的重置操作。

用法

public final CharsetEncoder reset()

參數:該函數不接受任何參數。


返回值:該函數重置特定的編碼器。

下麵是上述函數的實現:

示例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("US-ASCII") 
                  .newEncoder(); 
  
        // It will reset the encoder 
        // and clear all internal activities if there are 
        encoder.reset(); 
  
        // Prints the encoder after resetting it 
        System.out.println(encoder); 
    } 
}
輸出:
sun.nio.cs.US_ASCII$Encoder@232204a1

示例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("UTF8") 
                  .newEncoder(); 
  
        // It will reset the encoder 
        // and clear all internal activities if there are 
        encoder.reset(); 
  
        // Prints the encoder after resetting it 
        System.out.println(encoder); 
    } 
}
輸出:
sun.nio.cs.UTF_8$Encoder@232204a1

參考: https://docs.oracle.com/javase/10/docs/api/java/nio/charset/CharsetEncoder.html#reset()



相關用法


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