Java学习之过滤流的作用
一、定义
过滤流:BufferedInputStream和BufferedOutputStream, 缓存作用,用于装配文件磁盘、网络设备、终端等读写开销大的节点流,提高读写性能
二、使用
1. 过滤流BufferedReader的使用:用于缓存字符流,可以一行一行的读。
举例:
import java.io.*; public class inDataSortMaxMinIn { public static void main(String args[]) { try{ BufferedReader keyin = new BufferedReader(new InputStreamReader(System.in)); String c1; int i=0; int[] e = new int[10]; while(i<10){ try{ c1 = keyin.readLine(); e[i] = Integer.parseInt(c1); i++; } catch(NumberFormatException ee){ System.out.println("请输入正确的数字!"); } } } catch(Exception e){ System.out.println("系统有错误"); } } }
2. 过滤流:DataInputStream和DataOutputStream, 可从字节流中写入、读取Java基本数据类型,不依赖于机器的具体数据类型,方便存储和恢复数据
举例:
import java.io.*; public class DataStream { public static void main(String[] args)throws Exception{ try { DataOutputStream dos = new DataOutputStream(new BufferedOutputStream(new FileOutputStream("test.txt"))); dos.writeInt(3);//写入整型 dos.writeDouble(3.14);//写入浮点型 dos.writeUTF(“hello”);//写入字符串 dos.close(); DataInputStream dis = new DataInputStream(new BufferedInputStream(new FileInputStream("test.txt"))); System.out.println(dis.readInt()); //读取整型,输出3 System.out.println(dis.readDouble()); //读取浮点型,输出3.14 System.out.println(dis.readUTF()); //读取字符串,输出hello dis.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } } }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)