当前位置: 代码迷 >> Java相关 >> 窗口 程序有点小问题
  详细解决方案

窗口 程序有点小问题

热度:470   发布时间:2006-06-13 13:14:26.0
窗口 程序有点小问题

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class Test5 extends JFrame implements WindowListener,ActionListener{
JLabel jl1=new JLabel("本金");
JLabel jl2=new JLabel("利率");
JLabel jl3=new JLabel("存款年数");
JLabel jl4=new JLabel("每年年金额总计");
JTextField jt1=new JTextField(10);
JTextField jt2=new JTextField(10);
JTextField jt3=new JTextField(10);
JTextArea ja1=new JTextArea(4,6);
JButton jbtnAdd=new JButton("计算");
//GridBagLayout gb;
;
/** Creates a new instance of Test5 */
public Test5(String s) {
super("s");
//GridBagLayout gd=new GridBagLayout();

Container jfrm=getContentPane();

//jfrm.setLayout(new GridLayout());
JPanel p1=new JPanel();
p1.setLayout(new GridLayout(3,2));
JPanel p2=new JPanel();
p2.setLayout(new GridLayout(2,1));
p1.add(jl1);
p1.add(jt1);
p1.add(jl2);
p1.add(jt2);
p1.add(jl3);
p1.add(jt3);
jfrm.add(p1,BorderLayout.WEST);
p2.add(jl4);
p2.add(ja1);
jfrm.add(p2,BorderLayout.SOUTH);
jfrm.add(jbtnAdd,BorderLayout.EAST);
addWindowListener(this);
jbtnAdd.addActionListener(this);
}
public static void main(String[] args) {
Test5 t=new Test5("计算");
t.setSize(400,300);
t.setVisible(true);
}

public void windowOpened(WindowEvent e) {
}

public void windowClosing(WindowEvent e) {
System.exit(0);
}

public void windowClosed(WindowEvent e) {
}

public void windowIconified(WindowEvent e) {
}

public void windowDeiconified(WindowEvent e) {
}

public void windowActivated(WindowEvent e) {
}

public void windowDeactivated(WindowEvent e) {
}

public void actionPerformed(ActionEvent e) {
double sum=1,nu1,nu2,nu3;

nu1=(double)Integer.parseInt(jt1.getText());
nu2=(double)Integer.parseInt(jt2.getText());
nu3=(double)Integer.parseInt(jt3.getText());
sum=sum*nu1*(1.0f+nu2);
for(int i=1;i<Integer.parseInt(jt3.getText());i++)
sum=sum*(1.0f+nu2);
ja1.setText(String.valueOf(sum));

//getWrapStyleWord() 获取换行方式(如果文本区要换行)。
}

}

搜索更多相关的解决方案: 窗口  

----------------解决方案--------------------------------------------------------
有什么问题,我这里运行没什么问题啊,只是窗口布局难看了点
----------------解决方案--------------------------------------------------------
我这里编译不了啊
java4:Test5是公共的  应在名为Test5.java的文件中声明  public class Test5
----------------解决方案--------------------------------------------------------
我去掉了类的public可以编译 运行  为什么不能有public啊   
帮我解释下吧
----------------解决方案--------------------------------------------------------

你命名了public的类的话,那么你的文件名也必须和你的public类的名字相同
你把那个文件存在叫
Test5.java里面就可以了


----------------解决方案--------------------------------------------------------
谢谢版住  我改过来了
----------------解决方案--------------------------------------------------------
以后要记住哦,public的类的类名要和文件名一样,否则就会出错的
----------------解决方案--------------------------------------------------------
对的
----------------解决方案--------------------------------------------------------

好的.谢谢版住
请帮我看下 setUndecorated(true);
getRootPane().setWindowDecorationStyle(JRootPane.FRAME);
在窗口里这两句的作用是什么呢


----------------解决方案--------------------------------------------------------
把窗口的边框的风格改了
改为非WINDOW格式的
----------------解决方案--------------------------------------------------------
  相关解决方案