web-dev-qa-db-ja.com

Javaコード(JFormを使用するNetbeansではない))で入力フォームを作成する方法は?

Javaで入力フォームを作成して、ユーザーが詳細を入力できるようにしたい。

このようなもの:

desired form


私のコード

import Java.awt.GridLayout;
import javax.swing.*;

class JOptionPaneTest {

public static void main(String[] args) {
    String[] items = {"One", "Two", "Three", "Four", "Five"};
    JComboBox combo = new JComboBox(items);
    JTextField field1 = new JTextField("1234.56");
    JTextField field2 = new JTextField("9876.54");
    JPanel panel = new JPanel(new GridLayout(0, 1));
    panel.add(combo);
    panel.add(new JLabel("Field 1:"));
    panel.add(field1);
    panel.add(new JLabel("Field 2:"));
    panel.add(field2);
   int result = JOptionPane.showConfirmDialog(null, panel, "Test",
        JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
    if (result == JOptionPane.OK_OPTION) {
        System.out.println(combo.getSelectedItem()
            + " " + field1.getText()
            + " " + field2.getText());
    } else {
        System.out.println("Cancelled");
    }
}
}

私の出力フォーム:

current state of form

レイアウトをBorderLayoutのように変更する必要があると思います。質問の上部にあるフォームの外観を取得する方法はありますか?

16
Haxed

はい、レイアウトを変更する必要があります。 SpringLayout とこの例を見てください:

alt text
(ソース: Sun.com

String[] labels = {"Name: ", "Fax: ", "Email: ", "Address: "};
int numPairs = labels.length;

//Create and populate the panel.
JPanel p = new JPanel(new SpringLayout());
for (int i = 0; i < numPairs; i++) {
    JLabel l = new JLabel(labels[i], JLabel.TRAILING);
    p.add(l);
    JTextField textField = new JTextField(10);
    l.setLabelFor(textField);
    p.add(textField);
}

//Lay out the panel.
SpringUtilities.makeCompactGrid(p,
                                numPairs, 2, //rows, cols
                                6, 6,        //initX, initY
                                6, 6);       //xPad, yPad

SpringLayoutはこの単純なフォームでは問題なく機能しますが、より多くの機能を備えたサードパーティライブラリがあります。つまり MiGレイアウト

15
Jonas

GridBagLayout を使用してフォームを作成する別の方法は、次の結果を生成します。

enter image description here

コード:

JPanel addressPanel = new JPanel();
Border border = addressPanel.getBorder();
Border margin = new EmptyBorder(10, 10, 10, 10);
addressPanel.setBorder(new CompoundBorder(border, margin));

GridBagLayout panelGridBagLayout = new GridBagLayout();
panelGridBagLayout.columnWidths = new int[] { 86, 86, 0 };
panelGridBagLayout.rowHeights = new int[] { 20, 20, 20, 20, 20, 0 };
panelGridBagLayout.columnWeights = new double[] { 0.0, 1.0, Double.MIN_VALUE };
panelGridBagLayout.rowWeights = new double[] { 0.0, 0.0, 0.0, 0.0, 0.0,
                                               Double.MIN_VALUE };
addressPanel.setLayout(panelGridBagLayout);

addLabelAndTextField("City:", 0, addressPanel);
addLabelAndTextField("Street:", 1, addressPanel);
addLabelAndTextField("State:", 2, addressPanel);
addLabelAndTextField("Phone:", 3, addressPanel);
addLabelAndTextField("Mail:", 4, addressPanel);

ヘルパーメソッドaddLabelAndTextField

private void addLabelAndTextField(String labelText, int yPos,
                                  Container containingPanel) {

    JLabel label = new JLabel(labelText);
    GridBagConstraints gridBagConstraintForLabel = new GridBagConstraints();
    gridBagConstraintForLabel.fill = GridBagConstraints.BOTH;
    gridBagConstraintForLabel.insets = new Insets(0, 0, 5, 5);
    gridBagConstraintForLabel.gridx = 0;
    gridBagConstraintForLabel.gridy = yPos;
    containingPanel.add(label, gridBagConstraintForLabel);

    JTextField textField = new JTextField();
    GridBagConstraints gridBagConstraintForTextField = new GridBagConstraints();
    gridBagConstraintForTextField.fill = GridBagConstraints.BOTH;
    gridBagConstraintForTextField.insets = new Insets(0, 0, 5, 0);
    gridBagConstraintForTextField.gridx = 1;
    gridBagConstraintForTextField.gridy = yPos;
    containingPanel.add(textField, gridBagConstraintForTextField);
    textField.setColumns(10);
}
9
Matthias Braun

現在、GridLayoutを使用していますが、必要に応じて問題ありません。

ただし、必要な行と列の実際の数で初期化する必要があります。あなたの場合:

new GridLayout(0, 2); 

行の0は制限がないことを意味し、2つの列があり、1つはラベル用、もう1つは入力コンポーネント用です。 GridLayoutsの詳細については、 Javaチュートリアル を参照してください。

alt text
(ソース: Sun.com

ただし、GridLayoutはすべての「セル」を同じサイズにすることに注意してください。これはラベルの問題になる可能性があります。

ただし、Jonasの言うとおりです。 SpringLayout はおそらくニーズに合わせて調整されます。

2
Gnoupi