首页 > 编程语言 > 详细

Java基础知识强化之IO流笔记19:FileOutputStream的三个write方法

时间:2015-10-01 10:22:56      阅读:180      评论:0      收藏:0      [点我收藏+]

1. 

 void write(byte[] buffer)
          Writes the entire contents of the byte array buffer to this stream.
 void write(byte[] buffer, int offset, int count)
          Writes count bytes from the byte array buffer starting at offset to this stream.
 void write(int oneByte)
          Writes the specified byte oneByte to this stream.

Java基础知识强化之IO流笔记19:FileOutputStream的三个write方法

原文:http://www.cnblogs.com/hebao0514/p/4850712.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!