Java PipedWriter write()方法

java.io.PipedWriter.write(char[] cbuf, int off, int len) 方法写入len个字符从指定的字符数组开始到这个管道输出流偏移量。此方法将阻塞,直到所有的字符写入到输出流。如果一个线程从连接的管道输入流读取数据字符,但该线程不再处于活动状态,则抛出IOException。

1 语法

public void write(char[] cbuf, int off, int len)

2 参数

cbuf:数据。

off:数据中的起始偏移量。

len:要写入的字符数。

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.PipedWriter.write(char[] cbuf, int off, int len)方法的例子
 */
import java.io.*;

public class Demo {
    public static void main(String[] args) {
        char[] c = {'h', 'e', 'l', 'l', 'o'};

        // create a new Piped writer and reader
        PipedWriter writer = new PipedWriter();
        PipedReader reader = new PipedReader();

        try {
            // connect the reader and the writer
            writer.connect(reader);

            // write something
            writer.write(c, 0, 3);

            // print what we wrote
            for (int i = 0; i < 3; i++) {
                System.out.println("" + (char) reader.read());
            }
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}

输出结果为:

h
e
l

热门文章

优秀文章