show/hide this revision's text 3 overhauled question; edited tags

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(){
  ...
}
show/hide this revision's text 2 improved formatting

Hi to all,

I have created a program which search for a file in source folder. If it founds any file, it process that file and moves the file to destination folder and looks for new file in source folder. Like that it has to keeps on check the source folder for a file. I have used thread to look for files in source folder. Problem i am facing is whenever any exception throws during file process thread get stopped. I want the thread to be running even if the exception throws during file processing. It has to move that error to sum other folder and looks for for new file in source folder. How can i make thread to keeps on running?

Eg :

public void run() {
      try {
           searchfile();
      }
      catch(Exception e) {
          e.printStackTrace();
      }
}

public void searchfile(){
  ..................
................... }
show/hide this revision's text 1

How to restart thread in java?

Hi to all,

I have created a program which search for a file in source folder. If it founds any file, it process that file and moves the file to destination folder and looks for new file in source folder. Like that it has to keeps on check the source folder for a file. I have used thread to look for files in source folder. Problem i am facing is whenever any exception throws during file process thread get stopped. I want the thread to be running even if the exception throws during file processing. It has to move that error to sum other folder and looks for for new file in source folder. How can i make thread to keeps on running?

Eg :

public void run() {
try {
searchfile();
}
catch(Exception e) {
e.printStackTrace();
}
}

public void searchfile(){
..................
.................
}