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


Java FileDescriptor valid()用法及代码示例


FileDescriptor类valid()方法

  • valid() 方法可在java.io包。
  • valid() 方法用于检查这个 FileDescriptor 对象是否有效。
  • valid() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • valid() 方法在检查对象状态时不抛出异常。

用法:

    public boolean valid();

参数:

  • 它不接受任何参数。

返回值:

该方法的返回类型是boolean,当此 FileDescriptor 有效时返回真,否则返回假。

例:

// Java program to demonstrate the example 
// of boolean valid() method of FileDescriptor

import java.io.*;

public class ValidOfFD {
 public static void main(String[] args) throws Exception {
  FileInputStream is_stm = null;

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

   // By using getFD() method is to get
   // the file descriptor
   FileDescriptor file_des = is_stm.getFD();
   System.out.println("is_stm.getFD():" + file_des);

   // By using valid() method is to check 
   // whether the file descriptor is valid or
   // not
   boolean status = file_des.valid();
   System.out.println("is_stm.valid():" + status);
  } 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 (is_stm != null) {
    is_stm.close();
   }
  }
 }
}

输出

is_stm.getFD():[email protected]
is_stm.valid():true


相关用法


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