|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
不得不提一下的是:.net网页编程是看到java红,而开发出来的工具。
在JavaSwing编程中,程序员还能够自界说对话框,一样平常能够从JDialog类来承继。上面给出一个对话框类的代码:
classHelpAboutextendsJDialogimplementsActionListener
{
JavaWordmainFrame;
JButtonokButton;
javax.swing.TimermyTimer;
intCounter=0;
publicHelpAbout(JavaWordmainFrame)
{
super(mainFrame,"关于本程序的申明",true);//true代表为有形式对话框
this.mainFrame=mainFrame;
JPanelcontentPanel=newJPanel();
contentPanel.setLayout(newBorderLayout());
JLabelimageLabel=newJLabel(newImageIcon(".imagesjavalogo.gif"));
contentPanel.add(imageLabel,BorderLayout.WEST);
JPanelauthorInfoPane=newJPanel();
authorInfoPane.setLayout(newGridLayout(1,1));
JTextAreaaboutContent=newJTextArea("本程序是作者在进修Java2Swing编程的一个复杂的程序,
其实不作为贸易目标利用。
作者的接洽体例是:
");
aboutContent.enable(false);
authorInfoPane.add(aboutContent);
contentPanel.add(authorInfoPane,BorderLayout.NORTH);
JPanelsysInfoPane=newJPanel();
sysInfoPane.setLayout(newGridLayout(5,1));
sysInfoPane.setBorder(BorderFactory.createLoweredBevelBorder());
contentPanel.add(sysInfoPane,BorderLayout.CENTER);
JLabeluserName=newJLabel("本机的用户名为:"+System.getProperty("user.name"));
JLabelosName=newJLabel("本机的操纵体系是:"+System.getProperty("os.name"));
JLabeljavaVersion=newJLabel("本机中所安装的JavaSDK的版本号是:"+System.getProperty("java.version"));
JLabeltotalMemory=newJLabel("本机中Java假造机所大概利用的总内存数:"+Runtime.getRuntime().totalMemory()+"字节数");
JLabelfreeMemory=newJLabel("本机中Java假造机所残剩的内存数?quot;+Runtime.getRuntime().freeMemory()+"字节数");
sysInfoPane.add(userName);
sysInfoPane.add(osName);
sysInfoPane.add(javaVersion);
sysInfoPane.add(totalMemory);
sysInfoPane.add(freeMemory);
JPanelOKPane=newJPanel();
okButton=newJButton("断定(O)",newImageIcon(".imagesok.gif"));
okButton.setMnemonic(O);//设置快速键为"Alt+O"
/*以下代码是设置案钮的Rollover图像*/
Iconrollover=newImageIcon(".imagesexit.gif");
Icongeneral=newImageIcon(".imagesok.gif");
Iconpress=newImageIcon(".imageshelp.gif");
okButton.setRolloverEnabled(true);
okButton.setIcon(general);//设置分开时的图像
okButton.setRolloverIcon(rollover);//设置在按纽上时的图像
okButton.setPressedIcon(press);//设置在按下按纽时的图像
this.getRootPane().setDefaultButton(okButton);//设置该按钮为该对话框的默许的按钮?.
okButton.addActionListener(this);
OKPane.add(okButton);
contentPanel.add("South",OKPane);
setContentPane(contentPanel);
//this.setResizable(false);//设置对话框为不成改动巨细
myTimer=newjavax.swing.Timer(1000,this);
myTimer.start();
}
publicvoidactionPerformed(ActionEventparm1)
{
//TODO:Addyourcodehere
if(parm1.getSource()==okButton)
{
dispose();
}
elseif(parm1.getSource()==myTimer)
{
Counter++;
this.setTitle("以后的准时器的值为:"+Counter+"秒");
}
}
}
在事务呼应代码中显现出该对话框,其程序代码以下:
HelpAboutaboutDialog=newHelpAbout(this);
aboutDialog.setSize(500,500);
aboutDialog.show();
Java编译的是字节码,跟C++相反,启动不够快,效率不够高,难以精确控制内存,但是优点是编程比C++容易,代码比较安全但是容易留下性能隐患,跨平台靠字节码在各个平台复制(一处编译到处调试) |
|