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


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



描述

這個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.tutorialspoint;

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

相關用法


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