canWrite()
软件包java.io.File.canRead()中提供了此方法。
此方法用于写入文件,并且文件由抽象文件路径表示,或者换句话说,该方法用于测试应用程序是否可以写入文件。
此方法的返回类型为Boolean,即返回true或false,如果为true则表示文件可以由文件路径表示的应用程序写入,或者换句话说,文件已存在要写入,并返回false表示文件不存在表示不允许应用程序写入文件。
如果未授予文件写入权限,则此方法可能会引发异常(即Security Exception)。
语法:
boolean canWrite(){ }
参数:
我们不会在File方法中将任何对象作为参数传递。
返回值:
此方法的返回类型为Boolean,即如果文件已存在并且允许写入该文件(由抽象文件路径表示),则返回true,否则返回false。
canWrite()
方法示例//导入File类,因为我们将使用File类方法 import java.io.File; //导入Exception类,因为它可能 //在处理文件时引发异常 import java.lang.Exception; public class WriteFile { public static void main(String[] args) { try { //指定文件的路径,我们使用双斜杠 //为Windows转义'\'字符序列 File file1 = new File("C:\\Users\\computer clinic\\OneDrive\\Articles\\myjava.txt"); File file2 = new File("C:\\Users\\computer clinic\\OneDrive\\Articles\\java.txt"); //通过使用canWrite()允许写入文件 //如果文件已经存在并且返回true- //如果文件可写,则返回false。 if (file1.canWrite()) System.out.println("This file " + file1.getName() + " " + "is writable"); else System.out.println("This file " + file1.getName() + " " + "is not writable"); //通过使用canWrite()不允许写入文件 //因为此文件尚不存在,并且返回false。 if (file2.canWrite()) System.out.println("This file " + file2.getName() + " " + "is writable"); else System.out.println("This file " + file2.getName() + " " + "is not writable"); } catch (Exception e) { System.out.println("An error occurred."); e.printStackTrace(); } } }
输出结果
D:\Programs>javac WriteFile.java D:\Programs>java WriteFile This file C:\Users\computer clinic\OneDrive\Articles\myjava.txt is not writable This file C:\Users\computer clinic\OneDrive\Articles\java.txt is not writable