Java File.setReadOnly()
Syntax
File.setReadOnly() has the following syntax.
public boolean setReadOnly()
Example
In the following code shows how to use File.setReadOnly() method.
/* w w w . j a v a 2 s . com*/
import java.io.File;
public class Main {
public static void main(String[] args) {
File f = new File("C:/test.txt");
// set file as read only
boolean bool = f.setReadOnly();
System.out.println("setReadonly() succeeded?: " + bool);
// checks whether the file is writable
bool = f.canWrite();
System.out.print("Is file writable?: " + bool);
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.io »
Java Tutorial »
java.io »