java.io.BufferedInputStream.write(String str, int off, int len)方法实例
java.io.BufferedInputStream.write(String str, int off, int len) 方法写入字符串的一部分到writer。
声明
以下是 java.io.CharArrayWriter.write(String str, int off, int len) 方法的声明:
public void write(String str, int off, int len)
参数
-
str -- 源字符串
-
off -- 开始读取字符的偏移量
-
len -- 要写入的字符数
返回值
此方法不返回任何值。
异常
-
NA
例子
让我们来编译和运行上面的程序,这将产生以下结果:
package com.yiibai; 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!!