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並設置文件的父文件
相關用法
- Java File getPath()用法及代碼示例
- Java File isDirectory()用法及代碼示例
- Java File listFiles()用法及代碼示例
- Java File createTempFile()用法及代碼示例
- Java File canRead()用法及代碼示例
- Java File delete()用法及代碼示例
- Java File setLastModified()用法及代碼示例
- Java File canExecute()用法及代碼示例
- Java File getName()用法及代碼示例
- Java File canWrite()用法及代碼示例
- Java File createNewFile()用法及代碼示例
- Java File setExecutable()用法及代碼示例
- Java File getTotalSpace()用法及代碼示例
- Java File isHidden()用法及代碼示例
- Java File getParentFile()用法及代碼示例
注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 File setWritable() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。