摘要:
处理流的类型缓冲流看栗子: 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 ... 阅读全文