Java.io.PrintStream.write() 方法

  • 描述

    Java.io.PrintStream.write()方法从指定的字节数组偏移量off开始该流写入len个字节。如果启用了自动刷新,则将调用flush方法。注意,字节将按照给定的方式写入;要编写将根据平台的默认字符编码转换的字符,请使用print(char)或println(char)方法。
  • 声明

    以下是protected void write()方法的声明。
     public void write(byte[] buf,int off,int len)
  • 参数

    buf一个字节数组。
    off从其开始获取字节的偏移量。
    len要写入的字节数。
  • 返回值

    此方法不返回值。
  • 异常

    不适用
  • 例子

    以下示例显示java.io.PrintStream.write()方法的用法。
     
    package com.jc2182;
    
    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