Java.io.DataInputStream.readLong() 方法

描述

java.io.DataInputStream.readLong() 方法读取八个输入字节返回一个长值。


声明

以下是 java.io.DataInputStream.readLong() 方法的声明 −

public final long readLong()

参数

NA


返回值

此方法返回 8 字节的输入流,解释为长值。


异常

  • IOException − 如果发生 I/O 错误或流被关闭。

  • EOFException − 如果输入流在方法调用之前到达末尾。


示例

下面的例子展示了 java.io.DataInputStream.readLong() 方法的使用。

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 DataInputStreamDemo {
   public static void main(String[] args) throws IOException {
      InputStream is = null;
      DataInputStream dis = null;
      FileOutputStream fos = null;
      DataOutputStream dos = null;
      long[] l = {5488489334534l,234223424334l};
      
      try {
         // create file output stream
         fos = new FileOutputStream("c:\\test.txt");
           
         // create data output stream
         dos = new DataOutputStream(fos);
           
         // for each long in long buffer
         for(long j:l) {
         
            // write long to data output stream
            dos.writeLong(j);
         }
           
         // force data to the underlying file output stream
         dos.flush();
         
         // create file input stream
         is = new FileInputStream("c:\\test.txt");
         
         // create new data input stream
         dis = new DataInputStream(is);
         
         // available stream to be read
         while(dis.available()>0) {
         
            // read four bytes from data input, return int
            long k = dis.readLong();
            
            // print long value
            System.out.print(k+" ");
         }
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      } finally {
         // releases all system resources from the streams
         if(is!=null)
            is.close();
         if(dis!=null)
            dis.close();
         if(fos!=null)
            fos.close();
         if(dos!=null)
            dos.close();
      }
   }
}

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

5488489334534 234223424334