Writing D:/inetpub/webs/vincenzodevivocom/wiki/data/cache/f/fd5a8819d658fc8299155d494aff241c.i failed
Unable to save cache file. Hint: disk full; file permissions; safe_mode setting.
Writing D:/inetpub/webs/vincenzodevivocom/wiki/data/cache/f/fd5a8819d658fc8299155d494aff241c.i failed
Unable to save cache file. Hint: disk full; file permissions; safe_mode setting.
Writing D:/inetpub/webs/vincenzodevivocom/wiki/data/cache/f/fd5a8819d658fc8299155d494aff241c.xhtml failed
Asynchronous processing in Java
Classe Runnable:
public class MyThread implements Runnable {
private String myPath;
public MyThread (String myPath) {
this.myPath= myPath;
}
public void run() {
try {
...
} catch (Exception ex) {
...
}
}
}
Thread Start:
Runnable run = new MyThread("C:\\");
new Thread(run).start();