以下方法扩展了JFrame,但我需要在其中使用swing文本框来接收double值并将它们存储在变量中。必须将文本框添加到容器中。
public class myClass extends JFrame{
Container container;
container = getContentPane();
//Item label
JLabel labelText = new JLabel();
...
labelText.setText ("Item:");
container.add( labelText );
//Item name: Textbox
//code to make a textbox, add it to the container, and store the value in a variable goes here
答案 0 :(得分:6)
使用JTextField
:
JTextField field = new JTextField(10);
container.add(field, BorderLayout.SOUTH);
要获取字段的值,请执行Double.parseDouble(field.getText())
。