因为最近在做面向对象的实习,所以查阅了一些相关的资料搞出了点东西。
最开始是想怎样可以让他在不受控制的时候,就可以在后台显示时间,那方法也比较简单,分享给大家
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
public class Remind implements Runnable{
JLabel jj;
JFrame jFrame;
String rtime=null;
String thing;
Remind(JLabel J1) {
jj=J1;// TODO Auto-generated constructor stub
}
Remind(String f,JFrame Jf,String sj) {
rtime=f;
jFrame=Jf;
thing=sj;
}
int time=0;
SimpleDateFormat m=new SimpleDateFormat("hh:mm:ss");//从系统获取时间
Date date;
public void run(){
while(true){
date=new Date();
System.out.println(m.format(date));
jj.setText(m.format(date));
if(rtime!=null){
if(m.format(date).equals(rtime)){
JOptionPane.showMessageDialog(jFrame, thing);
return;
}
}
time+&