当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java DataOutputStream writeByte()用法及代码示例


DataOutputStream类writeByte()方法

  • writeByte() 方法可在java.io包。
  • writeByte() 方法用于将给定值作为 one-byte 值写入基本流,成功执行时变量 counter 加 1。
  • writeByte() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • writeByte() 方法可能在写入字节时抛出异常。
    IOException:在获取任何输入/输出错误时可能会抛出此异常。

用法:

    public final void writeByte(int val);

参数:

  • int val– 表示要写入基本数据输出流的字节值。

返回值:

该方法的返回类型是void,它什么都不返回。

例:

// Java program to demonstrate the example 
// of void writeByte(int val) method 
// of DataOutputStream

import java.io.*;

public class WriteByteOfDOS {
 public static void main(String[] args) throws Exception {
  ByteArrayOutputStream baos_stm = null;
  DataOutputStream dos_stm = null;

  byte[] b_arr = {
   10,
   20,
   30,
   40,
   50
  };

  try {
   // Instantiates ByteArrayOutputStream, DataOutputStream
   baos_stm = new ByteArrayOutputStream();
   dos_stm = new DataOutputStream(baos_stm);

   for (byte val:b_arr) {
    // By using writeByte() method isto write
    // byte value from the given byte array
    // to the dos_stm stream
    dos_stm.writeByte(val);
   }

   // By using flush() method isto
   // flush output bytes are written out
   // to the basic output stream
   dos_stm.flush();

   // By using toByArray() method isto
   // convert the stream baos_stm to byte 
   // array

   byte[] by = baos_stm.toByteArray();

   // Loop to display each byte to the
   // baos_stm data till its end

   for (byte val:by) {
    // Display byte
    System.out.println("dos_stm.writeByte():" + val);
   }
  } catch (Exception ex) {
   System.out.println(ex.toString());
  } finally {
   // this block is to free all necessary system 
   // resources linked with the stream

   if (baos_stm != null)
    baos_stm.close();

   if (dos_stm != null)
    dos_stm.close();
  }
 }
}

输出

dos_stm.writeByte():10
dos_stm.writeByte():20
dos_stm.writeByte():30
dos_stm.writeByte():40
dos_stm.writeByte():50


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java DataOutputStream writeByte() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。