当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。