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


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


setExecutable()方法是File類的一部分。該函數設置所有者或所有人執行抽象路徑名的權限。
該函數是重載函數一個函數需要兩個參數,而另一個僅需要一個。

函數簽名:

public boolean setExecutable(boolean a, boolean b)
public boolean setExecutable(boolean a)

函數語法:


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

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

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

對於第二次過載:

  • 如果將真實值作為參數傳遞,則允許它執行抽象路徑名,否則不允許執行該文件。

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

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

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

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

// Java program to demonstrate the 
// use of setExecutable() 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 Executable permission 
            // can be set to new value 
            if (f.setExecutable(true)) { 
  
                // Display that the Executable permission 
                // is be set to new value 
                System.out.println("Executable permission"
                                   + " is set"); 
            } 
            else { 
  
                // Display that the Executable permission 
                // cannot be set to new value 
                System.out.println("Executable permission"
                                   + " cannot be set"); 
            } 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

Executable permission is set

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

// Java program to demonstrate the 
// use of setExecutable() 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 Executable permission 
            // can be set to new value 
            if (f.setExecutable(true, false)) { 
  
                // Display that the Executable permission 
                // is be set to new value 
                System.out.println("Executable permission"
                                   + " is set"); 
            } 
            else { 
  
                // Display that the Executable permission 
                // cannot be set to new value 
                System.out.println("Executable permission"
                                   + " cannot be set"); 
            } 
        } 
        catch (Exception e) { 
            System.err.println(e.getMessage()); 
        } 
    } 
}

輸出:

Executable permission is set

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



相關用法


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