Java.io.CharArrayWriter.write() 方法

描述

java.io.BufferedInputStream.write(String str, int off, int len) 方法将字符串的一部分写入写入器。


声明

以下是 java.io.CharArrayWriter.write(String str, int off, int len) 方法的声明 −

public void write(String str, int off, int len)

参数

  • str − 源字符串。

  • off − 开始读取字符的偏移量。

  • len − 要写入的字符数。


返回值

此方法不返回任何值。


异常

NA


示例

下面的例子展示了 java.io.CharArrayWriter.write(String str, int off, int len) 方法的使用。

package com.tutorialspoint;

import java.io.CharArrayWriter;

public class CharArrayWriterDemo {
   public static void main(String[] args) {      
      String str = "Hello World!!";
      CharArrayWriter chw = null;
            
      try {
         // create character array writer
         chw = new CharArrayWriter();

         // portion to be written to writer
         chw.write(str, 4, 9);
         
         // print the buffer as string
         System.out.println(chw.toString());
               
      } catch(Exception e) {
         // for any error
         e.printStackTrace();
      } finally {
         // releases all system resources from writer
         if(chw!=null)
            chw.close();
      }
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

o World!!