编写一个Applet小程序,显示一个文本框和一个按钮,单击按钮,在文本框内显示当前时间。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写一个Applet小程序,显示一个文本框和一个按钮,单击按钮,在文本框内显示当前时间。相关的知识,希望对你有一定的参考价值。
编写一个Applet小程序,显示一个文本框和一个按钮,单击按钮,在文本框内显示当前时间。
是用java来编写
import java.applet.Applet;
import java.awt.Button;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Showtime extends Applet
private JTextField textField;
public Showtime()
this.setLayout(null);
textField = new JTextField();
textField.setBounds(32, 58, 122, 21);
this.add(textField);
textField.setColumns(10);
Button button = new Button("\u663E\u793A\u65F6\u95F4");
button.addActionListener(new ActionListener()
public void actionPerformed(ActionEvent e)
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat(
"yyyy-MM-dd HH:mm:ss");
String time = sdf.format(date);
textField.setText(time);
);
button.setBounds(52, 112, 76, 23);
this.add(button);
追问
运行的结果不行,
追答可能是awt和swing互用导致的, 我这里可以显示,你再试一下这个吧。
import java.applet.Applet;
import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.TextField;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.SimpleDateFormat;
import java.util.Date;
public class showtime1 extends Applet
TextField tf=new TextField();
public showtime1()
this.setLayout(new BorderLayout());
Button bt1=new Button("显示时间");
bt1.addActionListener(new ActionListener()
@Override
public void actionPerformed(ActionEvent arg0)
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat(
"yyyy-MM-dd HH:mm:ss");
String time = sdf.format(date);
tf.setText(time);
);
this.add(BorderLayout.SOUTH,bt1);
this.add(BorderLayout.NORTH,tf);
编写一个小程序,在小程序的容器中有两个按钮和一个文本框,单击"确定"按钮时,文本框显示按钮的名字
编写一个小程序,在小程序的容器中有两个按钮和一个文本框,单击"确定"按钮时,文本框显示按钮的名字;单击"清除"按钮,清除文本框内容
参考技术A Private Sub Command1_Click() '确定按钮的代码Text1.Text = Command1.Caption
End Sub
Private Sub Command2_Click() ‘'清除按钮的代码
Text1.Text = ""
End Sub 参考技术B 什么语言写啊?
以上是关于编写一个Applet小程序,显示一个文本框和一个按钮,单击按钮,在文本框内显示当前时间。的主要内容,如果未能解决你的问题,请参考以下文章
Applet 和 Swing 未在 Eclipse 中显示组件
编写程序界面中包括一个标签、一个文本框和一个按钮。当用户单击按钮时,程序把文本框的内容复制到标签中