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


Java File setReadable()用法及代碼示例


setReadable()方法是File類的一部分。該函數設置所有者或所有人的許可,以讀取抽象路徑名。該函數是重載函數一個函數需要兩個參數,而另一個僅需要一個。

函數簽名:

public boolean setReadable(boolean a, boolean b)
public boolean setReadable(boolean a)

函數語法:


file.setReadable(boolean a, boolean b)
file.setReadable(boolean a)

參數:該函數是重載函數:

  • 對於第一次過載:
    • 如果將真值作為第一個參數傳遞,則允許它讀取抽象路徑名,否則不允許讀取文件。
    • 如果將true值作為第二個參數傳遞,則執行權限僅適用於所有者,否則適用於所有人

對於第二次過載:

  • 如果將真值作為參數傳遞,則可以讀取抽象路徑名,否則不允許讀取文件。

返回值:無論操作是否成功,此函數都會返回布爾值。

異常:如果不允許該函數對該文件進行寫訪問,則此方法將引發Security Exception。

下麵的程序將說明setReadable()函數的用法

範例1:我們將嘗試更改f:目錄中現有文件的所有者的setReadable權限。

// Java program to demonstrate the 
// use of setReadable() function 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        // try-catch block to handle exceptions 
        try { 
  
            // Create a file object 
            File f = new File("f:\\program.txt"); 
  
            // Check if the Readable permission 
            // can be set to new value 
            if (f.setReadable(true)) { 
  
                // Display that the Readable permission 
                // is be set to new value 
                System.out.println("Readable permission"
                                   + " is set"); 
            } 
            else { 
  
                // Display that the Readable permission 
                // cannot be set to new value 
                System.out.println("Readable permission"
                                   + " cannot be set"); 
            } 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

Readable permission is set

範例2:我們將嘗試更改f:目錄中每個現有文件的setReadable權限。

// Java program to demonstrate the 
// use of setReadable() function 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        // try-catch block to handle exceptions 
        try { 
  
            // Create a file object 
            File f = new File("f:\\program.txt"); 
  
            // Check if the Readable permission 
            // can be set to new value 
            if (f.setReadable(true, false)) { 
  
                // Display that the Readable permission 
                // is be set to new value 
                System.out.println("Readable permission"
                                   + " is set"); 
            } 
            else { 
  
                // Display that the Readable permission 
                // cannot be set to new value 
                System.out.println("Readable permission"
                                   + " cannot be set"); 
            } 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

Readable permission is set

這些程序可能無法在在線IDE中運行。請使用離線IDE並設置文件的父文件



相關用法


注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 File setReadable() function in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。