请使用 NetBeans 打开考生文件夹下的项目 Java_2 。请完善 Java_2.java 文件,并进行调试,使程序显示对话框如下: 并在命令行中每隔 10 秒显示一下当前时间(如下图),直至用户在对话框下确认按钮后退出。 At the tone,the time is Wed Oct 31 09:46:07 CST 2007 At the tone,the time is Wed Oct 31 09:46:17 CST 2007 At the tone,the time is Wed Oct 31 09:46:27 CST 2007 由于 Java_2.java 文件不完整,请在注释行“ //*********Found******** “下一行语句的下划线地方填入正确内容,然后删除下划线,请勿删除注释行或改动其他已有语句内容。存盘时不得改变原有文件的文件名及存放目录。 import java.awt.*; import java.awt.event.*; import java.util.*; import javax.swing.*; import javax.swing.Timer; public class Java_2{ public static void main(String[] args){ //*********Found********** ActionListener listener = new __________________(); Timer t = new Timer(10000, listener); t.start(); JOptionPane.showMessageDialog(null, "退出程序吗?"); System.exit(0); } } //*********Found********** class TimePrinter ___________________ ActionListener{ //*********Found********** public void actionPerformed(___________________ event){ Date now = new Date(); System.out.println("At the tone, the time is " + now); //*********Found********** ___________________.getDefaultToolkit().beep(); } }