Java小应用程序Applet,画布上新建按钮和文本

<pre name="code" class="java">package com.hx;
import java.applet.*;
import java.awt.*;
public class Example extends Applet
{/*Java Applet必须由浏览器来运行,因此必须编一个超文本文件(含义applet标记的web网页),
通知浏览器来运行这个Java Applet。(用记事本编写,编写完成后文件后缀改为.html,放到类的目录文件下)
System.out.println(System.getProperty("java.class.path"));//可以得到类路径和包路径
该类在D:\javacode\Java例子\bin
<applet code=Example.class height=500 width=1000>
</applet>*/
//但是Myeclipse中有自带的浏览器,不需要用超文本文件
Button redbutton;
public void paint(Graphics g)
{
setSize(500, 500);
//设置组件的大小(但是一直不明白为什么组件大小改变,按钮的数量也会不一样)
g.setColor(Color.red);
g.drawString("我一边喝着咖啡,一边学Java呢", 5, 30);
g.setColor(Color.blue);
g.drawString("我学的很认真的", 10, 50);
setLayout(new FlowLayout(FlowLayout.LEFT, 10, 100));//设置按钮的位置(左对齐)
redbutton=new Button("我是一个红色按钮");
redbutton.setBackground(Color.red);
redbutton.setForeground(Color.white);
add(redbutton);
}
}

运行结果如下图:

Java小应用程序Applet,画布上新建按钮和文本

上一篇:D3D Deferred Shading


下一篇:qgroundcontrol开发环境搭建源码编译