📜  Java中的文件 canWrite() 方法及示例

📅  最后修改于: 2022-05-13 01:55:04.501000             🧑  作者: Mango

Java中的文件 canWrite() 方法及示例

canWrite()函数是Java中 File 类的一部分。该函数确定程序是否可以写入由抽象路径名表示的文件。如果抽象文件路径存在并且允许应用程序写入该文件,该函数返回true。

函数签名:

public boolean canWrite()

句法:

file.canWrite()

参数:此方法不接受任何参数。

返回值:该函数返回布尔值,表示是否允许应用程序写入文件。

异常:如果拒绝对文件的写访问,此方法将引发安全异常

下面的程序说明了 canWrite()函数的使用:

示例 1:文件“F:\\program.txt”是可写的

Java
// Java program to demonstrate
// canWrite() method of File Class
  
import java.io.*;
  
public class solution {
    public static void main(String args[])
    {
  
        // Get the file
        File f = new File("F:\\program.txt");
  
        // Check if the specified file
        // can be written or not
        if (f.canWrite())
            System.out.println("Can be written");
        else
            System.out.println("Cannot be written");
    }
}


Java
// Java program to demonstrate
// canWrite() method of File Class
  
import java.io.*;
  
public class solution {
    public static void main(String args[])
    {
  
        // Get the file
        File f = new File("F:\\program1.txt");
  
        // Check if the specified file
        // can be written or not
        if (f.canWrite())
            System.out.println("Can be written");
        else
            System.out.println("Cannot be written");
    }
}



输出:
Can be written

示例 2:文件“F:\\program1.txt”是可写的

Java

// Java program to demonstrate
// canWrite() method of File Class
  
import java.io.*;
  
public class solution {
    public static void main(String args[])
    {
  
        // Get the file
        File f = new File("F:\\program1.txt");
  
        // Check if the specified file
        // can be written or not
        if (f.canWrite())
            System.out.println("Can be written");
        else
            System.out.println("Cannot be written");
    }
}


输出:
Cannot be written

注意:这些程序可能无法在在线 IDE 中运行。请使用离线 IDE 并设置文件路径。