博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字节输入输出流的代码注意事项
阅读量:5817 次
发布时间:2019-06-18

本文共 1961 字,大约阅读时间需要 6 分钟。

输入输出是站在当前程序的角度,输入即从外界读取数据,输入即向外界输出数据。写代码时要注意以下几点,见代码:

字节输入流:

 

[java] view plain  copy
 
  1. package TestFileInputStream;  
  2.   
  3. import java.io.FileInputStream;  
  4. import java.io.FileNotFoundException;  
  5. import java.io.IOException;  
  6.   
  7. public class Test {  
  8.     public static void main(String[] args) {  
  9.         String name = "E:\\day03\\123.txt"; //读取地址  
  10.         FileInputStream f = null; //new一个字节输入流  
  11.         try {  
  12.             f = new FileInputStream(name);  
  13.             int len = 0;  
  14.             StringBuffer buffer = new StringBuffer();  
  15.             byte[] b = new byte[1024];   
  16.             //现代操作系统的内存管理都具有分页机制,而内存页的大小都是1024的整数倍  
  17.             //定义1024整数倍大小的缓冲区在分配内存时将不会形成碎片。  
  18.             while(-1 != (len = f.read(b))) { //.read没东西可读时会返回-1,当返回-1时停止循环  
  19.                 String str = new String(b, 0, len);  
  20.                 //每次都将读到byte[]里的内容传给str(String类型自带数组转字符串功能)  
  21.                 buffer.append(str);//再将str拼接到StringBuffer类型变量里面  
  22.             }  
  23.             System.out.println(buffer.toString());  
  24.         } catch (FileNotFoundException e) {  
  25.             // TODO Auto-generated catch block  
  26.             e.printStackTrace();  
  27.         } catch (IOException e) {  
  28.             // TODO Auto-generated catch block  
  29.             e.printStackTrace();  
  30.         } finally {  
  31.             if(f != null) {  
  32.                 try {  
  33.                     f.close();  
  34.                 } catch (IOException e) {  
  35.                     // TODO Auto-generated catch block  
  36.                     e.printStackTrace();  
  37.                 }  
  38.             }  
  39.         }  
  40.     }  
  41. }  

字节输出流:

 

[java] view plain  copy
 
    1. package TestFileOutputStream;  
    2.   
    3. import java.io.FileNotFoundException;  
    4. import java.io.FileOutputStream;  
    5. import java.io.IOException;  
    6.   
    7. public class Test {  
    8.     public static void main(String[] args) {  
    9.         String str = "11111asdfsad5665asd12f";  
    10.         String path = "E:\\day03\\123.txt"; //输出路径要是绝对路径,即输出到哪个文件,不能只是目录  
    11.         FileOutputStream f = null; //字节输出流  
    12.         try {  
    13.             f = new FileOutputStream(path, true);  
    14.             byte[] bytes = str.getBytes(); //把要输出的字符串变成字节数组  
    15.             f.write(bytes); //字节流写入只能传字节  
    16.             f.flush();  
    17.         } catch (FileNotFoundException e) {  
    18.             // TODO Auto-generated catch block  
    19.             e.printStackTrace();  
    20.         } catch (IOException e) {  
    21.             // TODO Auto-generated catch block  
    22.             e.printStackTrace();  
    23.         } finally {  
    24.             if(f != null) { //判断f是否为空,若为空就说明没动过,不用关闭  
    25.                 try {  
    26.                     f.close();  
    27.                 } catch (IOException e) {  
    28.                     // TODO Auto-generated catch block  
    29.                     e.printStackTrace();  
    30.                 }  
    31.             }  
    32.         }  
    33.           
    34.     }  
    35. }  

转载于:https://www.cnblogs.com/xyou/p/7146107.html

你可能感兴趣的文章
LeetCode 206 Reverse Linked List
查看>>
NSLog( @"%@", i );
查看>>
盘点那些Vs中常用到的Tab快捷编码
查看>>
Leetcode Valid Anagram
查看>>
js的时间戳的转换
查看>>
软件测试作业3
查看>>
【五】对象的创建
查看>>
dataframe去重 drop_duplicates
查看>>
vs2008环境下pthread程序的编译运行——以多线程求π为例
查看>>
编程之美 2.8找到合适的数字
查看>>
多线程
查看>>
Java精选笔记_DBUtils工具
查看>>
day16<集合框架+>
查看>>
mybatis由浅入深day01_8输出映射_8.1resultType输出类型(8.1.1输出简单类型_8.1.2输出pojo对象和pojo列表_8.1.3输出hashmap)...
查看>>
away3d 4.1 导入模型规范方法,解决模型导入错误
查看>>
Java正则过滤
查看>>
composer在ubuntu下安装
查看>>
[SinGuLaRiTy] 2017-07-26 综合性测试
查看>>
Android开发技巧——去掉TextView中autolink的下划线
查看>>
spring 入门
查看>>