验证是否可以在 Java 中写入文件
java.io.File.canWrite() 方法用于检查是否可以在 Java 中写入文件。如果抽象路径名指定的文件可以被应用程序写入,则此方法返回值 true,否则返回 false。
下面给出了演示此方法的程序 −
示例
import java.io.File; public class Demo { public static void main(String[] args) { try { File file = new File("demo1.txt"); file.createNewFile(); System.out.println("The file can be written to? " + file.canWrite()); } catch(Exception e) { e.printStackTrace(); } } }
以上程序的输出如下 −
输出
The file can be written to? true
现在让我们了解以上程序。
java.io.File.canWrite() 方法用于检查是否可以写入文件,方法返回的布尔值被打印出来。下面给出演示此方法的代码片段 −
try { File file = new File("demo1.txt"); file.createNewFile(); System.out.println("The file can be written to? " + file.canWrite()); } catch(Exception e) { e.printStackTrace(); }
广告