Java DataOutputStream类


数据输出流允许应用程序以与机器无关方式将Java基本数据类型写到底层输出流。

下面的构造方法用来创建数据输出流对象。

  1. DataOutputStream out = DataOutputStream(OutputStream out);

创建对象成功后,可以参照以下列表给出的方法,对流进行写操作或者其他操作。

序号 方法描述
1 public final void write(byte[] w, int off, int len)throws IOException
将指定字节数组中从偏移量 off 开始的 len 个字节写入此字节数组输出流。
2 Public final int write(byte [] b)throws IOException
将指定的字节写入此字节数组输出流。
3
  1. public final void writeBooolean()throws IOException,
  2. public final void writeByte()throws IOException,
  3. public final void writeShort()throws IOException,
  4. public final void writeInt()throws IOException
这些方法将指定的基本数据类型以字节的方式写入到输出流。
4 Public void flush()throws IOException
  刷新此输出流并强制写出所有缓冲的输出字节。
5 public final void writeBytes(String s) throws IOException
将字符串以字节序列写入到底层的输出流,字符串中每个字符都按顺序写入,并丢弃其高八位。

实例

下面的例子演示了DataInputStream和DataOutputStream的使用,该例从文本文件test.txt中读取5行,并转换成大写字母,最后保存在另一个文件test1.txt中。

  1. import java.io.*;
  2.  
  3. public class Test{
  4. public static void main(String args[])throws IOException{
  5.  
  6. DataInputStream d = new DataInputStream(new
  7. FileInputStream("test.txt"));
  8.  
  9. DataOutputStream out = new DataOutputStream(new
  10. FileOutputStream("test1.txt"));
  11.  
  12. String count;
  13. while((count = d.readLine()) != null){
  14. String u = count.toUpperCase();
  15. System.out.println(u);
  16. out.writeBytes(u + " ,");
  17. }
  18. d.close();
  19. out.close();
  20. }
  21. }

以上实例编译运行结果如下:

  1. THIS IS TEST 1 ,
  2. THIS IS TEST 2 ,
  3. THIS IS TEST 3 ,
  4. THIS IS TEST 4 ,
  5. THIS IS TEST 5 ,