當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.FilterWriter.write()用法及代碼示例



描述

這個java.io.FilterWriter.write(String str, int off, int len)方法將字符串的一部分寫入過濾器編寫器。

聲明

以下是聲明java.io.FilterWriter.write(String str, int off, int len)方法 -

public void write(String str, int off, int len)

參數

  • str- 要寫入過濾器編寫器的源字符串。

  • off- 開始讀取字符的偏移量。

  • len- 要寫入的字符數。

返回值

該方法不返回任何值。

異常

IOException− 如果發生 I/O 錯誤。

示例

下麵的例子展示了 java.io.FilterWriter.write(String str, int off, int len) 方法的用法。

package com.tutorialspoint;

import java.io.FilterWriter;
import java.io.StringWriter;
import java.io.Writer;

public class FilterWriterDemo {
   public static void main(String[] args) throws Exception {
      FilterWriter fw = null;
      Writer w = null;
      String str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
      String s = null;
      
      try {
         // create new reader
         w = new StringWriter(6);
          
         // filter writer
         fw = new FilterWriter(w) {
         };
         
         // write to filter writer
         fw.write(str, 5, 7);
         
         // get the string
         s = w.toString();
         
         // print
         System.out.print("String:"+s);
         
      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      } finally {
         // releases system resources associated with this stream
         if(w!=null)
            w.close();
         if(fw!=null)
            fw.close();
      }
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

String:FGHIJKL

相關用法


注:本文由純淨天空篩選整理自 Java.io.FilterWriter.write() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。