[java从头学]applet 练习

来源:互联网 发布:其孰能讥之乎 其的意思 编辑:程序博客网 时间:2024/05/16 07:04


applet  编码练习




import java.awt.*;import java.applet.*;public class ImportDemo extends Applet{Button redButton;public void init(){redButton = new Button("红色按钮");redButton.setBackground(Color.red);redButton.setForeground(Color.white);add(redButton);}public void paint(Graphics g){g.drawString("我正在练习使用import语句",90,40);}}


编辑 importdemo.html

<applet code = ImportDemo.class height = 50 width=320></applet>




原创粉丝点击