正如我们更喜欢Swing而不是AWT。现在, 我们可以使用JApplet, 它可以具有swing的所有控件。 JApplet类扩展了Applet类。 |
import java.applet.*;
import javax.swing.*;
import java.awt.event.*;
public class EventJApplet extends JApplet implements ActionListener{
JButton b;
JTextField tf;
public void init(){tf=new JTextField();
tf.setBounds(30, 40, 150, 20);
b=new JButton("Click");
b.setBounds(80, 150, 70, 40);
add(b);
add(tf);
b.addActionListener(this);
setLayout(null);
}public void actionPerformed(ActionEvent e){
tf.setText("Welcome");
}
}
在上面的示例中, 我们在init()方法中创建了所有控件, 因为它仅被调用一次。 |
<
html>
<
body>
<
applet code="EventJApplet.class" width="300" height="300">
<
/applet>
<
/body>
<
/html>
推荐阅读
- Java Applet教程介绍
- Java时间国际化(I18N与时间)
- 15种最佳Zapier替代品合集(自动化工具有哪些())
- 15种最佳1Password替代方案(密码管理器下载推荐)
- 什么是Officeclicktorun.exe(用途和如何禁用?)
- 每个开发人员都需要使用的15大GitHub替代品(软件开发托管服务)
- 什么是mstsc.exe(位置、用途、命令行介绍)
- Audacity的替代品有哪些(最佳音频编辑器软件合集)
- 什么是Vulkaninfo.exe、用途以及如何禁用它()