Java Writer write()方法

java.io.Writer.write(String str) 写一个字符串。

1 语法

public void write(String str)

2 参数

str:要写入的字符串。

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.Writer.write(String str)方法的例子
 */
import java.io.*;

public class Demo {
    public static void main(String[] args) {
        String str = "Hello world!";

        // create a new writer
        Writer writer = new PrintWriter(System.out);

        try {
            // write a string
            writer.write(str);

            // flush the writer
            writer.flush();

            // change line and write another string
            writer.write("\nThis is an example");

            // flush the stream again
            writer.flush();

        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}

输出结果为:

Hello world!
This is an example

热门文章

优秀文章