簡體   English   中英

分配給新多維數組的數據不斷更新

[英]Data assigned to new multidimensional array keeps updating

抱歉,我不知道這個問題的標題,但我在將數據分配給新的多維數組時遇到問題,做一些事情然后檢索舊數據。

在我的情況下,我試圖循環遍歷 JTextFields,將所有當前數據專門分配給新的多維數組的顏色。 然后我想進行搜索並更改找到的文本字段的背景顏色。

現在我有一個重置按鈕,我希望將現在位於新多維數組中的舊顏色分配回字段。 我遇到的問題是新的多維數組在搜索后使用新顏色進行了更新。 如果有人能指出我正確的方向,我真的很感激。

這是我的代碼:

public JTextField[][] fields = new JTextField[totalX][totalY];
    public JTextField[][] newFields = new JTextField[totalX][totalY];
    
    if (e.getSource() == btnFind  || e.getSource() == txtSearch)
    {
        // Make a copy of fields before selecting everything
        for(int t = 0; t < totalX; t++){
            for(int r = 0; r < totalY; r++){
                newFields[t][r] = fields[t][r];
            }
        }
        
        findStudentRecord();
        // when looping though newFields[x][y] here it is already updated to the current colour
        
    }
    if (e.getSource() == btnReset)
    {
        for(int x = 0; x < totalX; x++){
            for(int y = 0; y < totalY; y++){
                fields[x][y].setText(newFields[x][y].getText());
                fields[x][y].setBackground(newFields[x][y].getBackground()); 
                // have tried this one but doesn't work
                if(newFields[x][y].getBackground() == Color.green){
                    fields[x][y].setBackground(Color.green);
                    System.out.print(fields[x][y].getText() + "\n");
                }
            }
        }
    } 

這是 findStudentRecord()

public void findStudentRecord()
{
    boolean found = false;
    String strFind = txtSearch.getText();
    for(int x = 0; x < totalX; x++){
        for(int y = 0; y < totalY; y++){
            if(fields[x][y].getText().equalsIgnoreCase(strFind))
            {
                found = true;
            }
        }
    }
    if (found)
    {
        for (int x = 0; x < totalX; x++)
        {
            for(int y = 0; y < totalY; y++){
                if(fields[x][y].getText().equalsIgnoreCase(strFind))
                {
                    fields[x][y].setBackground(new Color(255,217,200));
                }
            }
        }
        txtSearch.setText(txtSearch.getText() + " ...Found.");
    }
    else
    {
        txtSearch.setText(txtSearch.getText() + " ...Not Found.");
    }
}

您必須創建一個新的JTextField並添加相關數據:

    newFields[t][r] = new javax.swing.JTextField();
    newFields[t][r].setText(fields[t][r].getText());
    newFields[t][r].setColumns(fields[t][r].getColumns());
    // any other property you want to transfer

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM