by the great wind i come
BlogJava
首页
新随笔
新文章
联系
聚合
管理
posts - 6,comments - 1,trackbacks - 0
<
2024年12月
>
日
一
二
三
四
五
六
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(3)
给我留言
查看公开留言
查看私人留言
随笔分类
(5)
时尚科技(4)
随风心情(1)
随笔档案
(6)
2005年8月 (5)
2005年7月 (1)
文章分类
(2)
Java Applet 编程(1)
Java GUI 编程(1)
文章档案
(2)
2005年7月 (2)
Blog
【刻录事】
94smart
Delphi公园
Webleon
对牛乱弹琴 | Playin' with IT
布鲁斯狼
鱼鱼爱歌会
Link
del.icio.us
gmail
google-me
wallop
zh-wiki
flick
r
最新评论
1. re: JFrame 类的用法
很好,怎样往窗口内容区加内容?请给出语句。谢谢!!!!!!!!!
--miao
阅读排行榜
1. swing组件的用法(1081)
2. Just for fun(566)
3. 重返c++总部(403)
4. 全flash制作的webmail(389)
5. Google的IM推出了(377)
评论排行榜
1. Google的IM推出了(0)
2. 全flash制作的webmail(0)
3. 好玩的东东(0)
4. 重返c++总部(0)
5. Just for fun(0)
Java Applet小事例
这个Applet是用来在网页上显示一个Button.用到JApplet类
import java.awt.
*
;
import java.awt.
event
.
*
;
import java.net.
*
;
import java.applet.
*
;
import javax.swing.
*
;
public
class
SwingApplet extends JApplet
{
JButton button;
public
void
init()
{
String laf
=
UIManager.getSystemLookAndFeelClassName();
try
{
UIManager.setLookAndFeel(laf);
//
UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
}
catch
(UnsupportedLookAndFeelException exc)
{
System.err.println(
"
Warning: UnsupportedLookAndFeel:
"
+
laf);
}
catch
(Exception exc)
{
System.err.println(
"
Error loading
"
+
laf
+
"
:
"
+
exc);
}
getContentPane().setLayout(
new
FlowLayout());
button
=
new
JButton(
"
Hello, I'm a Swing Button!
"
);
getContentPane().add(button);
}
public
void
stop()
{
if
(button
!=
null
)
{
getContentPane().remove(button);
button
=
null
;
}
}
}
posted on 2005-07-19 11:20
linchanx
阅读(316)
评论(0)
编辑
收藏
所属分类:
Java Applet 编程
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理