线程Thread实现界面定时提醒功能与时间显示

因为最近在做面向对象的实习,所以查阅了一些相关的资料搞出了点东西。


最开始是想怎样可以让他在不受控制的时候,就可以在后台显示时间,那方法也比较简单,分享给大家


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+&
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值