Java File setWritable()方法
java.io.File.setWritable(boolean writable) 方法设置此抽象路径名的所有者的写权限。
1 语法
public boolean setWritable(boolean writable)
2 参数
writable:如果为true,允许写访问权限;如果为false,写访问权限是不允许的。
3 返回值
当且仅当操作成功返回true。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.File.setWritable(boolean writable)方法的例子
*/
import java.io.File;
public class Demo {
public static void main(String[] args) {
File f = null;
boolean bool = false;
try {
// create new File object
f = new File("d:/test.txt");
// returns true if file exists
bool = f.exists();
// if file exists
if(bool) {
// set file access to writable
bool = f.setWritable(true);
// print
System.out.println("setWritable() succeeded?: "+bool);
// checks whether the file is writable
bool = f.canWrite();
// prints
System.out.print("Is file writable?: "+bool);
}
} catch(Exception e) {
// if any error occurs
e.printStackTrace();
}
}
}
输出结果为:
setWritable() succeeded?: true
Is file writable?: true
热门文章
优秀文章