Java tutorial
import java.io.File; public class Main { public static void main(String[] args) { File f = new File("C:/test.txt"); boolean bool = f.setWritable(true); System.out.println("setWritable() succeeded?: " + bool); bool = f.canWrite(); System.out.print("Is file writable?: " + bool); } }