This is my first time here. Please, excuse my bad English.
I am writing here to ask a question about TimerTask and collateral effects of object disposing.
Here is a simple example. This example shows a JFrame with a big button which starts a TimerTask. This task only writes a message, sleeps 6 seconds, and writes another message.
Every 10 secs (it's not important this fact) the task is executed.
If I click the button (when I know that the task is stopped and in the sleep method), the object writer (that let's us write a message) is set to null and the timer is cancelled.
Then, if I cancel the task, and an execution of this task is running, it can be thrown NullPointerException (remember that writer was set to null).
My question is: how can I avoid NullPointerException in this case? Catching it in the
run method of Timertask? or directly interrupting the task with interrupt method?
Thank you for your understanding.
public class CancelTimer extends JFrame{
public static void main(String[] args) {
new CancelTimer().setVisible(true);
}
Timer timer;
Writer writer;
public CancelTimer() {
super();
writer=new Writer();
timer= new Timer("timer");
timer.schedule(new TimerTask() {
@Override
public void run() {
try{
writer.print("Start and wait");
try {
Thread.sleep(6000);
} catch (InterruptedException e) {
e.printStackTrace();
}
writer.print("Bye, bye!");
} catch (NullPointerException e){
System.out.println("NullPointerException due external disposing task!");
}
}
}, 3000, 10000);
JPanel panel = new JPanel(new BorderLayout());
JButton button= new JButton();
button.setAction(new AbstractAction() {
@Override
public void actionPerformed(ActionEvent e) {
writer=null;
timer.cancel();
}
});
panel.add(button,BorderLayout.CENTER);
this.setContentPane(panel);
this.pack();
this.setSize(new Dimension(400,400));
}
private class Writer {
public void print(String text){
System.out.println("PRINT SOME TEXT: "+text);
}
}
}
