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


Java Java.io.DataOutputStream.writeFloat()用法及代碼示例


描述

這個java.io.DataOuputStream.writeFloat(float v)方法將浮點值寫入底層流。櫃台written成功調用此方法時增加 4。

聲明

以下是聲明java.io.DataOutputStream.writeFloat(float v)方法 -

public final void writeFloat(float v)

參數

v- 要寫入輸出流的浮點值。

返回值

此方法不返回任何值。

異常

IOException− 如果發生 I/O 錯誤。

示例

下麵的例子展示了 java.io.DataOutputStream.writeFloat(float v) 方法的用法。

package com.tutorialspoint;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

public class DataOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      InputStream is = null;
      DataInputStream dis = null;
      FileOutputStream fos = null;
      DataOutputStream dos = null;
      float[] fbuf = {65.56f,66.89f,67.98f,68.82f,69.55f,70.37f};
      
      try {
         // create file output stream
         fos = new FileOutputStream("c:\\test.txt");
         
         // create data output stream
         dos = new DataOutputStream(fos);
         
         // for each byte in the buffer
         for (float f:fbuf) {
            // write float to the dos
            dos.writeFloat(f);         
         }
         
         // force bytes to the underlying stream
         dos.flush();
         
         // create file input stream
         is = new FileInputStream("c:\\test.txt");
         
         // create new data input stream
         dis = new DataInputStream(is);
         
         // read till end of the stream
         while(dis.available()>0) {
            // read character
            float c = dis.readFloat();
            
            // print
            System.out.print(c + " ");
         }
         
      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      } finally {
         // releases all system resources from the streams
         if(is!=null)
            is.close();
         if(dos!=null)
            is.close();
         if(dis!=null)
            dis.close();
         if(fos!=null)
            fos.close();
      }
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

65.56 66.89 67.98 68.82 69.55 70.37

相關用法


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