java程序运行不了_java程序运行不了

这个Java程序创建了一个简单的秒表应用,使用Swing库。它包含两个按钮,一个用于启动和暂停计时,另一个用于显示当前时间。程序通过ActionListener监听按钮事件,用Timer类来更新时间并在标签上显示。
摘要由CSDN通过智能技术生成

importjava.awt.*;importjava.awt.event.ActionEvent;importjava.awt.event.ActionListener;importjava.text.SimpleDateFormat;importjava.util.Date;importjavax.swing.Timer;public...

import java.awt.*;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.text.SimpleDateFormat;

import java.util.Date;

import javax.swing.Timer;

public class timer implements ActionListener{

Button button1;

Button button2;

Timer secondTime,secondTime2;

private Frame frame;

Label label1=new Label();

Panel p;

Panel q;

int n=10;

public timer()

{

this.p=new Panel();

p.add(label1);

frame=new Frame("秒表");/*创建窗体*/

this.button1=new Button("点击");

button1.addActionListener(this);

frame.add(button1,BorderLayout.SOUTH);

p.setVisible(true);

frame.add(p,BorderLayout.CENTER);

this.button2=new Button("暂停");

button2.addActionListener(this);

frame.add(button2,BorderLayout.SOUTH);

q.setVisible(true);

frame.add(q,BorderLayout.CENTER);

secondTime2 = new Timer(10000,this);/*将定时器设定为每秒执行一次actionPerformed的方法*/

secondTime = new Timer(10000,this);/*将定时器设定为每秒执行一次actionPerformed的方法*/

frame.setBounds(400,400,400,400);

frame.setVisible(true);

}

public void actionPerformed(ActionEvent e)

{

if(e.getSource()==button1)/*触发开始测试菜单项时发生的事件*/

{

secondTime.start();/*定时器启动*/

secondTime2.start();/*定时器启动*//*定时器启动*/}

else if(e.getSource()==button2)

{

secondTime.stop();

secondTime2.stop();

}

else if(e.getSource()==secondTime)

{

System.exit(0);

}

else if(e.getSource()==secondTime2)

{

Date now = new Date();

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");//可以方便地修改日期格式

String str = dateFormat.format( now );

label1.setText(str);

}

}

public static void main(String[] args){

timer a=new timer();

}}

展开

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值