您的位置:首页 > 编程语言 > Java开发

关于java.io的一点总结

2007-03-15 20:25 441 查看
1/用java输出回车到.txt 文件 方法是str="abc"+"/r/n"; .将str输入到txt中.

2/inputstream 的read用法(转贴)

 byte[] data = new byte[length];//length是一常量
  in.read(data);

执行后data数组有时填满有时填不满。查阅java API 后发现read(byte[])这个方法只是尽可能的读满给定的数组,实际读入的数据长度是这个方法的反回值。

API中的方法定义

public int read(byte[] b) throws IOException

Reads some number of bytes from the input stream and stores them into the buffer array b. The number of bytes actually read is returned as an integer. This method blocks until input data is available, end of file is detected, or an exception is thrown.

后修改程序:

  byte[] data = new byte[length];//length是一常量
  int position = 0;
  while(position<data.length){
        position+=in.read(data,position,data.length-position);
    }

数组读入正常。
 

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息