首页 > 代码库 > 回退流 Demo 1
回退流 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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。