3

ちょっと私はここで少し新しいので、投稿で何かを台無しにした場合はお詫びします。とにかく、私が抱えている問題は配列に対処する必要があります。基本的にしようとしているのは、String[]配列を使用してフォームにデータを入力し、画面に表示してから、getForm()関数にString[]を返すことです。フォームのタイトルとtext[i]の情報。追加したボタンを使用してgetForm()関数を呼び出し、別のフォーム ( createForm()を ListListener にアタッチ) に変更し、すべてのラベルがgetForm()で返されたものとして表示されるまで、これはすべて正常に機能します。関数。配列の使用方法と関係があると確信していますが、配列をリセットするcreateForm()関数を再度通過する別のリスト項目を選択した後、それらは通常に戻ると思ったので、私は何が起こっているのかわからない。

ありがとう

私が参照しているもののスクリーンショットも以下に含めました。

http://www.majhost.com/gallery/adc90/afsd/error.png

class Form extends JPanel
{
    //Arrays for the forms
    private String[] com = {"Communication","ICAO","Type","Frequency"};
    private String[] fuel = {"Fuel","ICAO","Type"};
    private String[] runway = {"Runway","ICAO","Number","Type","Length"};
    private String[] airplane = {"Airplane","Make","Model","Type","Fuel Capacity", "Fuel Burn Rate", "Air Speed"};
    private String[] airport = {"Airplane","ICAO","Name","Longitude","Latitude","crFreq","crType", "Fuel Type"};

    //Declare variables
    private JTextField[] text;
    private String[] formReturn;
    private String[] formArray;
    private JButton submit,clear;

    public Form()
    {
        createForm("Airplane");
    }

    public void createForm(String choice)
    {
        removeAll();
        if(choice.equals("Communication"))
        {
            formArray = com;
        }
        else if(choice.equals("Fuel"))
        {
            formArray = fuel;
        }
        else if(choice.equals("Airplane"))
        {
            formArray = airplane;
        }
        else if(choice.equals("Airport"))
        {
            formArray = airport;
        }
        else if(choice.equals("Runway"))
        {
            formArray = runway;
        }


        int l = formArray.length + 1;
        text = new JTextField[l];

        //Layout info
        GridLayout grid = new GridLayout(l,2);
        grid.setHgap(0);
        setLayout(grid);
        //Set label
        add(new JLabel(formArray[0]));
        add(new JLabel(""));
        for(int i = 1; i < formArray.length; ++i)
        {
            add(new JLabel(formArray[i]));
            add(text[i] = new JTextField(20));
        }

        //Add in the buttons and the actionlisteners
        submit = new JButton("Create");
        clear = new JButton("Delete");
        add(clear);
            clear.addActionListener(new Button());
        add(submit);
            submit.addActionListener(new Button());
        updateUI();
    }
    //Get form info
    //This works so far
    public String[] getForm()
    {
        formReturn = formArray;
        formReturn[0] = formArray[0];
        for(int i = 1; i < formReturn.length; i++)
            formReturn[i] = text[i].getText();
        return formReturn;
    }
    //Clear form
    public void clearForm()
    {
        for(int i = 1; i < formArray.length; i++)
            text[i].setText("");
    }
}

4

1 に答える 1

4
public String[] getForm()
{
    formReturn = formArray; /* (0) */
    formReturn[0] = formArray[0];
    for(int i = 1; i < formReturn.length; i++)
        formReturn[i] = text[i].getText(); /* (1) */
    return formReturn;
}

行(1)を見てください。ラベルテキストを指すformReturn配列を変更します。formReturn->formArray->com。

これを修正するには、(0)に新しい文字列配列を作成するだけです。

formReturn = new String[formArray.length];
于 2012-04-29T06:04:55.707 に答える