位置:首頁 > Java技術 > Java.io包 > java.io.StringWriter.append(CharSequence csq,int start,int end)方法實例

java.io.StringWriter.append(CharSequence csq,int start,int end)方法實例

java.io.StringWriter.append() 方法將指定的字符序列的子序列寫入此writer。

聲明

以下是java.io.StringWriter.append()方法的聲明

public StringWriter append(CharSequence csq,int start,int end)

參數

  • csq -- 字符序列追加。如果csq為null,則這四個字符“null”被附加到這個writer。

  • start -- 在序列的第一個字符的索引

  • end -- 字符以下的子序列的最後一個字符的索引

返回值

此方法返回這個writer。

異常

  • IndexOutOfBoundsException -- 如果start 或end為負,start 大於end,或end大於csq.length()

例子

下麵的示例演示java.io.StringWriter.append()方法的用法。

package com.yiibai;

import java.io.*;

public class StringWriterDemo {

   public static void main(String[] args) {

      // create a new writer
      StringWriter sw = new StringWriter();

      // create a new sequence
      CharSequence sq = "Hello World";

      // append sequence
      sw.append(sq, 0, 5);

      // print result     
      System.out.println("" + sw.toString());

      // append second sequence
      sw.append(sq, 6, 5);

      // print result again
      System.out.println("" + sw.toString());

   }
}

Let us compile and run the above program, this will produce the following result

Hello
Hello World