回退流 Demo 1

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回退流 Demo 1相关的知识,希望对你有一定的参考价值。

package pushbackInputStream;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.PushbackInputStream;

/*
 * 回退输入流 :类 PushbackInputStream
 * 
 * 构造方法:
 * PushbackInputStream(InputStream in) 
          创建 PushbackInputStream 并保存其参数(即输入流 in),以供将来使用。
 */
public class PushbackInputStreamDemo {
    public static void main(String[] args) throws Exception {
        //定义一个字符串
        String str = "hello.world.hah.heihei";
        //定义一个内存输入流
        ByteArrayInputStream ba  = new ByteArrayInputStream(str.getBytes());
        //定义一个回退流对象
        PushbackInputStream pd = null;
        pd = new PushbackInputStream(ba);
        System.out.println("读取之后的数据为:");
        int temp = 0;
        while ((temp =pd.read())!=-1){
            if (temp == ‘.‘) {
               pd.unread(temp);
               temp = pd.read();
               System.out.print("(退回"+(char)temp+")");
            
            }
               else {
                    System.out.print((char)temp);
                }
        }
        
                
    }

 

以上是关于回退流 Demo 1的主要内容,如果未能解决你的问题,请参考以下文章

PushBackInputStream回退流

Java IO总结

onErrorResume 和 doOnError 的区别

P3308 [SDOI2014]LIS(最小割+退流)

BZOJ3532 [Sdoi2014]Lis 网络流退流

[vscode]--HTML代码片段(基础版,reactvuejquery)