摘要: 处理流的类型缓冲流看栗子: 1 package io; 2 3 import java.io.*; 4 5 public class TestBufferStream1 { 6 public static void main(String[] args) { 7 try { 8 FileInputStream fis = new FileInputStream("d:/1.txt"); 9 BufferedInputStream bis = new BufferedInputStream(fis);10 ... 阅读全文
posted @ 2013-09-12 10:30 董文博 阅读(273) 评论(0) 推荐(0) 编辑