Hi to all,
I have created a program which search searches for a file files in a source folder. If it founds finds any file, it process processes that file and moves the file it to a destination folderand , then looks for a new file in the source folder. Like that it It has to keeps keep on check checking the source folder for a file.
I have used a thread to look for files in the source folder. Problem i The problem I am facing is whenever any exception throws is thrown during file process processing, the thread get gets stopped. I want the thread to be running even if the an exception throws during file processingis thrown. It has to move the file that caused the error to sum some other folder and looks for look for a new file in the source folder. How can i I make the thread to keeps keep on running?
Eg:
public void run() {
try {
searchfile();
}
catch(Exception e) {
e.printStackTrace();
}
}
public void searchfile(){
...
}
