随笔 - 232  文章 - 0 评论 - 1 阅读 - 10万
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

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

点击链接了解更多

posted on   SXT  阅读(81)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示