java.io.Writer.write(String str)方法實例
java.io.Writer.write(String str) 方法寫入一個字符串。
聲明
以下是java.io.Writer.write()方法的聲明
public void write(String str)
參數
-
str -- 寫入的字符串
返回值
此方法冇有返回值
異常
-
IOException -- 如果發生I/ O錯誤
例子
下麵的示例演示java.io.Writer.write()方法的用法。
package com.yiibai; import java.io.*; public class WriterDemo { 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(" This is an example"); // flush the stream again writer.flush(); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hello world! This is an example