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


Java Java.io.File.canRead()用法及代碼示例



描述

這個java.io.File.canRead()如果文件可以由其抽象名稱表示,則方法返回 true。

聲明

以下是聲明java.io.File.canRead()方法 -

public boolean canRead()

參數

NA

返回值

此方法返回布爾值。 True,如果指定的文件存在其路徑名並且允許應用程序讀取該文件。

異常

SecurityException− 如果 SecurityManager.checkRead(java.lang.String) 方法拒絕應用程序的讀取訪問。

示例

下麵的例子展示了 java.io.File.canRead() 方法的用法。

package com.tutorialspoint;

import java.io.File;

public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      
      try {
         // create new file
         f = new File("c:/test.txt");
         
         // returns true if the file can be read
         boolean bool = f.canRead();
         
         // print
         System.out.print("File can be read:"+bool);
         
      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      }
   }
}

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

File can be read:false

相關用法


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