Java开发网 |
注册 |
登录 |
帮助 |
搜索 |
排行榜 |
发帖统计
|
您没有登录 |
» Java开发网 » Java SE 综合讨论区
» 安装/配置/编译/环境
打印话题 寄给朋友 订阅主题 |
作者 | Re:为什么在Jcreator 下的 Basic Java Application 不能在DOS 下运行 [Re:mq] |
mq
发贴: 13 积分: 0 |
于 2005-08-01 11:00
在JCreator pro 3.5 代码是:public class FfFrame extends Frame { /** * The constructor. */ public FfFrame() { MenuBar menuBar = new MenuBar(); Menu menuFile = new Menu(); MenuItem menuFileExit = new MenuItem(); menuFile.setLabel("File"); menuFileExit.setLabel("Exit"); // Add action listener.for the menu button menuFileExit.addActionListener ( new ActionListener() { public void actionPerformed(ActionEvent e) { FfFrame.this.windowClosed(); } } ); menuFile.add(menuFileExit); menuBar.add(menuFile); setTitle("Ff"); setMenuBar(menuBar); setSize(new Dimension(400, 400)); // Add window listener. this.addWindowListener ( new WindowAdapter() { public void windowClosing(WindowEvent e) { FfFrame.this.windowClosed(); } } ); } /** * Shutdown procedure when run as an application. */ protected void windowClosed() { // TODO: Check if it is safe to close the application // Exit application. System.exit(0); } } public class Ff { public static void main(String[] args) { // Create application frame. FfFrame frame = new FfFrame(); // Show frame frame.setVisible(true); } } 请求JAVA学习方向????? |
话题树型展开 |
已读帖子 新的帖子 被删除的帖子 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |