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


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


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

函數簽名:

public boolean setWritable(boolean a, boolean b)
public boolean setWritable(boolean a)

函數語法:


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

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

  • 對於第一次過載:
    • 如果將真實值作為第一個參數傳遞,則可以寫入抽象路徑名,否則不允許寫入文件。
    • 如果將真實值作為第二個參數傳遞,則“寫入”權限僅適用於所有者,否則適用於所有人

返回值:該函數返回一個布爾值,該值指示操作是否成功。

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

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

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

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

輸出:

Writable permission is set

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

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

輸出:

Writable permission is set

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



相關用法


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