Instead of using a try catch block, try a do while
loop checking if the file exists.
do {
} while ( !file.exists() );
This method is in java.io.File
Instead of using a try catch block, try a do while
loop checking if the file exists.
do {
} while ( !file.exists() );
This method is in java.io.File