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


Java FileInputStream getFD()用法及代码示例


FileInputStream类getFD()方法

  • getFD() 方法可在java.io包。
  • getFD() 方法用于返回 FileDescriptor 对象,该对象表示与此 FileInputStream 正在使用的文件系统中的确切文件的连接。
  • getFD() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • getFD() 方法在获取文件描述符时不会抛出异常。

用法:

    public FileDescriptor getFD();

参数:

  • 它不接受任何参数。

返回值:

该方法的返回类型是FileDescriptor,它返回与此流链接的相同 FileDescriptor 对象。

例:

// Java program to demonstrate the example 
// of FileDescriptor getFD() method 
// of FileInputStream

import java.io.*;

public class GetFDOfFIS {
 public static void main(String[] args) throws Exception {
  FileInputStream fis_stm = null;
  FileDescriptor file_desc = null;

  try {
   // Instantiates FileInputStream
   fis_stm = new FileInputStream("C:\\includehelp.txt");

   // By using getFD() method is to return
   // FileDescriptor linked with the stream	

   file_desc = fis_stm.getFD();
   System.out.println("fis_stm.getFD():" + file_desc);
  } catch (Exception ex) {
   System.out.println(ex.toString());
  } finally {
   // with the help of this block is to
   // free all necessary resources linked
   // with the stream
   if (fis_stm != null) {
    fis_stm.close();
   }
  }
 }
}

输出

fis_stm.getFD():[email protected]


相关用法


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