How to restart thread in java? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T17:46:51Zhttp://stackoverflow.com/feeds/question/468266http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/468266/how-to-restart-thread-in-java2How to restart thread in java?raja2009-01-22T07:04:25Z2009-02-01T17:05:24Z
<p>Hi to all,</p>
<p>I have created a program which searches for files in a source folder. If it finds any file, it processes that file and moves it to a destination folder, then looks for a new file in the source folder. It has to keep on checking the source folder for a file.</p>
<p>I have used a thread to look for files in the source folder. The problem I am facing is whenever any exception is thrown during file processing, the thread gets stopped. I want the thread to be running even if an exception is thrown. It has to move the file that caused the error to some other folder and look for a new file in the source folder. How can I make the thread keep on running?</p>
<p>Eg:</p>
<pre><code>public void run() {
try {
searchfile();
}
catch(Exception e) {
e.printStackTrace();
}
}
public void searchfile(){
...
}
</code></pre>
http://stackoverflow.com/questions/468266/how-to-restart-thread-in-java/468278#46827811Answer by Jon Skeet for How to restart thread in java?Jon Skeet2009-01-22T07:10:39Z2009-01-22T07:10:39Z<p>If a thread is dying due to an uncaught exception, the answer is simple: catch the exception at an appropriate place so that you can keep going. Either catch the exception within your searchfile method, or make the run method call searchfile in a loop.</p>
http://stackoverflow.com/questions/468266/how-to-restart-thread-in-java/468280#4682801Answer by Bashar Kokash for How to restart thread in java?Bashar Kokash2009-01-22T07:11:02Z2009-01-22T07:11:02Z<p>Inside your catch, you can move the file to the error folder then create a new object of the same thread and start it again.</p>
http://stackoverflow.com/questions/468266/how-to-restart-thread-in-java/468326#4683261Answer by raja for How to restart thread in java?raja2009-01-22T07:31:39Z2009-01-22T07:31:39Z<p>Thanks. But i should be more clear in my question. Actually there are 4 source folders and 4 destination folders. I have to perform the same operation in each source & destination pair. So i have created 4 threads in one class and do the operation in separate class.</p>
<p>class MainClass<br>
{<br>
public static void main(String[] args){<br>
for(int i=0;i<4;i++){<br>
SearchClass search = new SearchClass();<br>
Thread thread = new Thread(search);<br>
thread.start();<br>
}<br>
}<br>
}<br></p>
<p>class SearchClass<br>
{<br>
public void run() {<br>
try {<br>
searchfile();<br>
}
catch(Exception e) {<br>
e.printStackTrace();<br>
}<br>
}</p>
<p>public void searchfile(){
...
}
}</p>
<p>All the thread wont stop running eventhough it caught any exception in middle. How can i do that?</p>
http://stackoverflow.com/questions/468266/how-to-restart-thread-in-java/468386#4683860Answer by netzwerg for How to restart thread in java?netzwerg2009-01-22T08:10:09Z2009-01-22T08:10:09Z<p>unless i got you wrong, your code is missing the "keep running" nature, i.e. you need to have a loop somewhere:</p>
<pre><code>public static void main(String[] args){
ExecutorService service = Executors.newFixedThreadPool(4);
// for each of your 4 folders
while (true) {
Future<File> searchResult = service.submit(new SearchTask());
try {
File foundFile = searchResult.get();
// handle found file
} catch (Exception e) {
// handle exception
}
}
}
private static class SearchTask implements Callable<File> {
@Override
public File call() {
return searchFile();
}
public File searchFile() {
// search & return found file
}
}
</code></pre>
<p>note that this is just a very simple extension of your example. it is still missing the parametrization of the SearchTask to actually be specific for a folder, handling of files & exceptions, etc. as mentioned in previous answers, your SearchTask should implement Runnable (i prefer Callable...), and IMHO it's always better to use an ExecutorService than to spawn threads manually. hope this helps...</p>
http://stackoverflow.com/questions/468266/how-to-restart-thread-in-java/468423#4684230Answer by JMahmood for How to restart thread in java?JMahmood2009-01-22T08:32:56Z2009-01-22T08:32:56Z<p>you said that the exception may be thrown during file process , so i put the <code>processFile()</code> in a try-catch block. but if it may be thrown during search, you may put it in a try-catch too.</p>
<pre><code>public void run() {
while(!terminated) {
findNextFile();
try {
processFile();
} catch {
// handle error
}
}
}
</code></pre>
http://stackoverflow.com/questions/468266/how-to-restart-thread-in-java/470628#470628-1Answer by Peter Lawrey for How to restart thread in java?Peter Lawrey2009-01-22T20:13:15Z2009-01-22T20:13:15Z<p>If you want your thread to keep running use a loop.</p>
<pre><code>public void run() {
while(!Thread.interrupted())
try {
searchfile();
}
catch(Exception e) {
e.printStackTrace();
}
}
</code></pre>
http://stackoverflow.com/questions/468266/how-to-restart-thread-in-java/501157#5011570Answer by Eddie for How to restart thread in java?Eddie2009-02-01T17:05:24Z2009-02-01T17:05:24Z<p>Here are my assumptions based on your question and your clarification:</p>
<ul>
<li>Each thread, in the <code>run()</code> method, only calls <code>searchfile()</code> once and not in a loop</li>
<li>your <code>searchfile()</code> method has a loop in it and you want <strong>that loop</strong> to continue running even if an exception is thrown in it.</li>
<li>you have some way of initializing each thread that you aren't showing us (and that isn't terribly important for this specific quiestion)</li>
<li><code>searchfile()</code> does not declare that it throws any <code>Exception</code></li>
<li>You aren't using a logging framework, but are instead using <code>System.out</code> (although using a logging framework is a Really Good Idea</li>
<li>Java 5 is OK (otherwise you'll have to use a different <code>for()</code> loop below</li>
</ul>
<p>With these assumptions, you don't want to plan to catch an <code>Exception</code> in your <code>run()</code> method except for the purpose of logging that something went very wrong:</p>
<pre><code>public void run() {
try {
searchfile();
} catch (RuntimeException e) {
System.out.println("Something went very wrong! Unexpected RuntimeException");
e.printStackTrace();
}
}
</code></pre>
<p>Note that the code catches <code>RuntimeException</code>. Always catch the most specific <code>Exception</code> that will do what you need. Then what you need is something such as the following in your <code>searchfile()</code> method:</p>
<pre><code>File[] files = directory.listFiles();
for (File file : files) {
try {
// Do your normal file/directory processing here
} catch (Exception e) {
System.out.println("Exception processing file " + file.getName() + " " + e);
// Move "file" to another area
}
}
</code></pre>
<p>Since you are trapping unexpected <code>Exception</code>s in the main loop of your <code>Thread</code>, your thread will continue processing after handling the <code>Exception</code>.</p>