首页 > 其他 > 详细

FileInputStream_FileOutputStream

时间:2017-08-02 17:27:33      阅读:237      评论:0      收藏:0      [点我收藏+]

Writer的基本方法

 


 

  //向输出流中写入一个字符数据,该字节数据为参数b的低16位

  void write(int c) throws IOException

  //将一个字符类型的数组中的数据写入输出流,

  void write(char[] cbuf) throws IOException

  //将一个字符类型的数组中的从指定位置(offset)开始的

  //length个字符写入到输出流

  void write(char[] cbuf,int offset, int length)

              throws IOException

  //将一个字符串中的字符写入到输出流

  void write(String string) throws IOException

  //讲一个字符串从offset开始的length个字符写入到输出流

  void write(String string, int offset, int length)

              throws IOException

  //关闭流释放内存资源

  void close() throws IOException

  //将输出流中缓冲的数据全部写出到目的地

  void flush() throws IOException

点击链接了解更多

FileInputStream_FileOutputStream

原文:http://www.cnblogs.com/hane/p/7274955.html

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