Post

Tackling FileNotFoundException in Java: A Comprehensive Guide

Java is an object-oriented programming language that has a strong exception handling mechanism to resolve any issues during the execution of code. Java provides several predefined exceptions to handle special events that occur during the execution of the code. Today, we will delve into one such exception - The FileNotFoundException in Java.

Understanding FileNotFoundException

FileNotFoundException is a checked exception in Java - which is thrown by the Java Virtual Machine (JVM) during the runtime when a file that is supposed to be read or written to doesn’t exist in the specified location.

When does FileNotFoundException occur?

  1. The file doesn’t exist in the mentioned directory.
  2. The file exists, but the user has insufficient permissions to access the file.
  3. The file is a directory rather than a regular file.

How FileNotFoundException Works?

Below is a simple instance to understand FileNotFoundException:

1
2
3
4
5
6
7
8
9
10
11
12
13
import java.io.File;
import java.io.FileReader;

public class Main {
    public static void main(String[] args) {
        fileOperation();
    }

    static void fileOperation() {
        File file = new File("NoFile.txt");
        FileReader fr = new FileReader(file);
    }
}

This code attempts to create a FileReader object with a file named “NoFile.txt”. Since the file does not exist, Java throws a FileNotFoundException.

Handling FileNotFoundException in Java

Java endorses a robust approach to deal with exceptions via try-catch mechanism.

Below is a simple code example :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;

public class Main {
    public static void main(String[] args) {
        try {
            fileOperation();
        }
        catch (FileNotFoundException e) {
            e.printStackTrace();
        }
    }

    static void fileOperation() throws FileNotFoundException {
        File file = new File("NoFile.txt");
        FileReader fr = new FileReader(file);
    }
}

In this code, the fileOperation() method is wrapped inside a try-catch block. The catch block handles the FileNotFoundException.

“throws” Keyword

Java also allows the use of the throws keyword to delegate exception handling to the calling method. This keyword can be used to throw a single exception or multiple exceptions.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.io.*;

public class Main {
    public static void main(String[] args) {
        try {
            fileOperation();
        }
        catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        catch(IOException e){
            e.printStackTrace();
        }
    }

    static void fileOperation() throws FileNotFoundException, IOException {
        File file = new File("NoFile.txt");
        FileReader fr = new FileReader(file);
        fr.close();
    }
}

In this code, the fileOperation() method is capable of throwing both FileNotFoundException and IOException. IOException handles any issue that happens while opening or closing the file.

Best Practices to handle FileNotFoundException

1. Check if a file Exists

It is recommended to check the existence of a file before trying to read or write.

1
2
3
4
File file = new File("NoFile.txt");
if(file.exists()){
   // Perform operations on file
}

2. Give Proper File Locations

Ensure that you are providing the full and correct path of the file.

1
File file = new File("/home/user/documents/file.txt");

3. Check Access Permissions

Ensure that the appropriate permissions are granted to the file.

1
2
3
4
File file = new File("file.txt");
if(file.canRead()){
   // Perform operations on file
}

Precautionary Steps

✔️ Before trying to read from or write to a file, use the exists() method from the java.io.File class to check file existence.

✔️ Handle file access in a robust manner, accounting for all possible edge cases.

✔️ If required, use java.io.File class’s canRead(), canWrite(), canExecute() to verify file permissions.

✔️ Check if the file in question is, in actuality, a directory with the isDirectory() method.

In conclusion, FileNotFoundException in Java is an exception that a developer cannot afford to overlook while dealing with file operations. For further understanding, you should refer to the official Java documentation.

So next time a file is playing hide and seek in your Java code, you know how to catch it!

References

  1. Oracle Java Documentations
  2. Java Exception Handling

Happy Coding!

This post is licensed under CC BY 4.0 by the author.