zoukankan      html  css  js  c++  java
  • JavaIO 系统

    1、javaIO系统的设计使用了装饰器模式:

    很少使用单个类来创建对象,而是通过叠合对各对象来提供所需要的功能。

    (将多个对象层叠在一起,才能得到自己想要的对象)。 

     

    inputStream read()和ouputStream 中的write()一字节或字节数组读写数据,不是经常使用的方法,而是用为了其他类的调用,

    DataInputStream d=new DataInputStream(new BufferedInputStream(new FileInputStream(“ filePath”)));

     

    1)打开文件,以便能输入:使用FileInputStream

    2)为了提高速度,需要将文件进行缓存处理:使用BufferedInputStream

    3)以格式化的形式读取输入的数据, DataInputStream

     

    2、标准输入输出:

    System.out   System.err   System.in

    System.out /err 都进行了封装,而system.in没有进行封装,在使用时要进行封装。

    DataInputStream d=new DataInputStream(new BufferedInputStream(System.in));

     

    javaI/O类库中需要

    FileterInputStream FileterOutputStream 用来提供装饰类接口,以控制特定输入流和输出流的两个类,是装饰器的必要条件,(以便能为所有正在修饰的对象提供通用接口)

     程序代码参见:

    http://www.cnblogs.com/liuling/archive/2013/05/08/bufferedStream.html

    http://www.cnblogs.com/liuling/archive/2013/05/07/InputStreamAndOutputStream.html (对输入输出流的讲解)

    1、缓冲输入文件

     public String read()throws IOException{
     BufferedReader in=new BufferedReader(new FileReader(""));
     String s="";
     StringBuilder sb=new StringBuilder();
     while((s=in.readLine())!=null){
     sb.append(s+' ');
     }
     in.close();
     return  sb.toString();
      }

    按字节读取:


      int s=-1;
      byte[] b=new byte[1024];
      while((s=bis.read(b))!=-1){
      sb.append(new String(b,0,s));
      fo.write(b);
      }
      bis.close();

     

  • 相关阅读:
    学习记录-1
    初识CSS3 3D效果,浅谈理解
    so easy,too happy
    软件工程作业----自我介绍
    从零玩转JavaWeb系列7web服务器-----表单的提交
    从零玩转JavaWeb系列7web服务器-----get与post的区别
    从零玩转JavaWeb系列7web服务器-----用户登录界面二维码的制作
    mina 粘包、多包和少包的解决方法
    《MFC游戏开发》笔记十 游戏中的碰撞检测进阶:地图类型&障碍物判定
    使用 mina 传输大字节数组
  • 原文地址:https://www.cnblogs.com/yeemi/p/7470187.html
Copyright © 2011-2022 走看看