检测 java.io.FileNotFoundException 的根本原因

FileNotFoundException在各种情况下都会被抛出 - 不仅仅在文件名无效时,而且当例如权限不允许创建或读取文件时也是如此:

java.io.FileNotFoundException: \\server\share\directory\test.csv (Anmeldung fehlgeschlagen: unbekannter Benutzername oder falsches Kennwort)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
    at java.io.FileWriter.<init>(FileWriter.java:73)

上面的示例显示了一个德国 Windows,它抱怨用户名或密码无效。

有没有一种方法可以不解析异常消息来获得有关异常发生原因的更细粒度的信息?消息解析的问题在于,在不同的区域设置中,消息会有所不同。


答案 1

在创建 之前,请自行检查文件是否存在/读写权限。FileOutputStream

File test_csv = new File( "\\server\share\directory\test.csv" );

if ( test_csv.exists( ) && test_csv.canWrite( ) )
{
  // Create file writer
  ...
}
else
{
  // notify user
  ...
}

请注意,如果需要创建新文件,有时必须检查目标文件的父级的读/写权限。

File test_csv = new File( "\\server\share\directory\test.csv" );
File parent_dir = test_csv.getParentFile( )

if ( parent_dir.exists( ) && parent_dir.canWrite( ) )
{
  // Create file writer
  ...
}
else
{
  // notify user
  ...
}

答案 2

在尝试读取文件之前,您可能希望使用 java.io.File 对象查看该文件的属性。有一个 canRead 方法可用于确定用户是否可以读取文件。


推荐