JAVA如何中断处于sleep状态的线程?
现有批处理任务其中一个任务需读取系统某指定目录下的文本,如果没有文本导致读取不到,则会进行一个sleep(10000)的操作,在这种状态下如何人为停止这个线程。停服务的不...
现有批处理任务其中一个任务需读取系统某指定目录下的文本,如果没有文本导致读取不到,则会进行一个sleep(10000)的操作,在这种状态下如何人为停止这个线程。停服务的不算。
展开
展开全部
import java.io.File;
public class MyThread {
public static void main(String[] args) {
try {
MyThread1 myThread1 = new MyThread1();
Thread t = new Thread(myThread1);
t.start();
try {
// 为看出效果让main方法线程休眠3秒
Thread.currentThread().sleep(3000);
} catch (InterruptedException e) {
System.out.println("stop the MyThread1 error!");
}
t.interrupt();
System.out.println("stop the MyThread1 success!");
} catch (Exception e) {
e.printStackTrace();
}
}
}
class MyThread1 implements Runnable {
@Override
public void run() {
File test = new File("C:\\test123.txt");
if (!test.exists()) {
try {
System.out.println("can not find the file test123.txt");
// 让当前的MyThread1线程休眠20秒
Thread.currentThread().sleep(20000);
System.out.println("....");
} catch (InterruptedException e) {
return;
}
}
}
}
//简单的写了个例子,关键的点已经加了注释,你直接拷贝代码运行一下就明白了。
public class MyThread {
public static void main(String[] args) {
try {
MyThread1 myThread1 = new MyThread1();
Thread t = new Thread(myThread1);
t.start();
try {
// 为看出效果让main方法线程休眠3秒
Thread.currentThread().sleep(3000);
} catch (InterruptedException e) {
System.out.println("stop the MyThread1 error!");
}
t.interrupt();
System.out.println("stop the MyThread1 success!");
} catch (Exception e) {
e.printStackTrace();
}
}
}
class MyThread1 implements Runnable {
@Override
public void run() {
File test = new File("C:\\test123.txt");
if (!test.exists()) {
try {
System.out.println("can not find the file test123.txt");
// 让当前的MyThread1线程休眠20秒
Thread.currentThread().sleep(20000);
System.out.println("....");
} catch (InterruptedException e) {
return;
}
}
}
}
//简单的写了个例子,关键的点已经加了注释,你直接拷贝代码运行一下就明白了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询