void writeBytes(String s)


描述

所述 java.io.DataOutputStream.writeBytes(String s) 方法的字节到底层流作为1字节的值写入。成功执行此方法后,计数器将递增1。

声明

以下是 java.io.DataOutputStream.writeBytes(String s) 方法的声明

public final void writeBytes(String s)

参数

  • s - 源为字符串,以字节形式写入流中。

返回值

此方法不返回任何值。

异常

  • IOException - 如果发生I / O错误。

实例

以下示例显示了java.io.DataOutputStream.writeBytes(String s)方法的用法。

package com.tutorialspoint;

import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;

public class DataOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      ByteArrayOutputStream baos = null;
      DataOutputStream dos = null;
      String s = "Hello World!!";

      try {
         // create byte array output stream
         baos = new ByteArrayOutputStream();

         // create data output stream
         dos = new DataOutputStream(baos);

         // write to the output stream from the string
         dos.writeBytes(s);

         // flushes bytes to underlying output stream
         dos.flush();

         System.out.println(s+" in bytes:");

         // for each byte in the buffer content
         for(byte b:baos.toByteArray()) {   

            // print byte
            System.out.print(b + ",");
         }

      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      } finally {
         // releases all system resources from the streams
         if(baos!=null)
            baos.close();
         if(dos!=null)
            dos.close();
      }
   }
}

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

Hello World!! in bytes:
72,101,108,108,111,32,87,111,114,108,100,33,33,