java.io.Writer.write(String str,int off,int len)方法實例
java.io.Writer.write(String str,int off,int len) 方法將寫入一個字符串的一部分。
聲明
以下是java.io.Writer.write()方法的聲明
public void write(String str,int off,int len)
參數
-
str -- 寫入的字符串
-
off -- 從開始寫入字符的偏移量
-
len -- 要寫入的字符數
返回值
此方法冇有返回值
異常
-
IndexOutOfBoundsException -- 如果off為負,或len為負,或者off + len位置為負或大於給定字符串的長度
-
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 portion writer.write(str, 0, 5); // flush the writer writer.flush(); // write another string portion writer.write(str, 5, 6); // flush the stream again writer.flush(); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hello world