Java.io.PrintStream.write() 方法



描述

java.io.PrintStream.write() 方法将指定字节数组中从偏移量 off 开始的 len 个字节写入此流。如果启用了自动刷新,则将调用 flush 方法。

请注意,字节将按原样写入;要写入根据平台的默认字符编码进行转换的字符,请使用 print(char) 或 println(char) 方法。

声明

以下是 java.io.PrintStream.write() 方法的声明。

public void write(byte[] buf,int off,int len)

参数

  • buf − 字节数组。

  • off − 开始获取字节的偏移量。

  • len − 要写入的字节数。

返回值

此方法不返回值。

异常

示例

以下示例显示了 java.io.PrintStream.write() 方法的使用。

package com.tutorialspoint;

import java.io.*;

public class PrintStreamDemo {
   public static void main(String[] args) {
      byte c[] = {70, 71, 72, 73, 74, 75, 76};

      // create printstream object
      PrintStream ps = new PrintStream(System.out);

      // write bytes 1-3
      ps.write(c, 1, 3);

      // flush the stream
      ps.flush();
   }
}

让我们编译并运行以上程序,这将产生以下结果:

GHI
java_io_printstream.htm
广告