0

私はNetBeansを初めて使用し(ただし Java は使用しません)、問題があります。JTextFieldJButtonのみを含む NetBeans で GUI を作成しました。

メイン メソッドからテキスト フィールドにテキストを追加したいので、次の行をメイン メソッドの最後に追加しました (したがって、基本的にメイン メソッドでは、生成されたコードによってJFrameが作成され、その後にのみ追加の行が追加されます)。jTextField1.setText("WHATEVER"); そして、何も起こりません。テキストフィールドを に変更しましたpublic staticが、まだ何もありません。

ただし、actionPerformedボタンのメソッド内で同じ行を使用すると、機能します。

なんで?メインクラスからテキストを設定できないのはなぜですか?

コードは次のとおりです。

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
  */
 package pac.jframe_test;

  /**
  *
  * @author Orand
  */
public class JFrame_Test_UI extends javax.swing.JFrame {

/**
 * Creates new form JFrame_Test_UI
 */
public JFrame_Test_UI() {
    initComponents();
}

/**
 * This method is called from within the constructor to initialize the form.
 * WARNING: Do NOT modify this code. The content of this method is always
 * regenerated by the Form Editor.
 */
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">                          
private void initComponents() {

    jButton1 = new javax.swing.JButton();
    jTextField1 = new javax.swing.JTextField();

    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

    jButton1.setText("jButton1");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
        public void actionPerformed(java.awt.event.ActionEvent evt) {
            jButton1ActionPerformed(evt);
        }
    });

    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(layout.createSequentialGroup()
            .addGap(154, 154, 154)
            .addComponent(jButton1)
            .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
            .addContainerGap(112, Short.MAX_VALUE)
            .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 185, javax.swing.GroupLayout.PREFERRED_SIZE)
            .addGap(103, 103, 103))
    );
    layout.setVerticalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
            .addContainerGap(109, Short.MAX_VALUE)
            .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
            .addGap(96, 96, 96)
            .addComponent(jButton1)
            .addGap(52, 52, 52))
    );

    pack();
}// </editor-fold>                        

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
    jTextField1.setText("whatever");
}                                        

/**
 * @param args the command line arguments
 */
public static void main(String args[]) {
    /* Set the Nimbus look and feel */
    //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
    /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
     * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
     */
    try {
        for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
            if ("Nimbus".equals(info.getName())) {
                javax.swing.UIManager.setLookAndFeel(info.getClassName());
                break;
            }
        }
    } catch (ClassNotFoundException ex) {
        java.util.logging.Logger.getLogger(JFrame_Test_UI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (InstantiationException ex) {
        java.util.logging.Logger.getLogger(JFrame_Test_UI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (IllegalAccessException ex) {
        java.util.logging.Logger.getLogger(JFrame_Test_UI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (javax.swing.UnsupportedLookAndFeelException ex) {
        java.util.logging.Logger.getLogger(JFrame_Test_UI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    }
    //</editor-fold>

    /* Create and display the form */
    java.awt.EventQueue.invokeLater(new Runnable() {
        public void run() {
            new JFrame_Test_UI().setVisible(true);
        }
    });
    jTextField1.setText("WHATEVER");
}
// Variables declaration - do not modify                     
private javax.swing.JButton jButton1;
public static javax.swing.JTextField jTextField1;
// End of variables declaration                   

}

4

2 に答える 2

1

テキストを設定しようとした時点では、jTextField1変数はまだ初期化されていないためです。実際、イベント キューがメイン メソッドの最後で invokeLater に渡されたランナブルを呼び出すときにのみ初期化されます。

さらに、メイン スレッドから Swing コンポーネントにアクセスしているため、Swing コンポーネントはイベント ディスパッチ スレッドからのみ使用する必要があります。そのため、メイン メソッドは に渡されたランナブル内のフレームを初期化しEventQueue.invokeLater()ます。concurrency に関する Swing チュートリアルを読むか、次の質問で、イベント リスナーでスリープすると GUI 全体がフリーズする理由を尋ねます。

このフィールドは public であってはならず、静的であってはなりません。フレーム コンストラクターからフィールドのテキストを初期化しませんか? そこで初期化する必要があります。

于 2013-04-12T19:19:58.623 に答える
0

netbeans コード アーキテクチャによると、JFrame を拡張する Class のデフォルトの構築からinitComponents()メソッドを呼び出すため、コードで使用しているすべてのJComponentsのメモリ割り当てはinitComponentsメソッド本体で行われます。そのため、 initComponentsメソッド呼び出しの後に、これらの JComponents のメソッドを呼び出すことをお勧めし ます。

あなたのコードはそのようでなければなりません....

public JFrame_Test_UI() {
    initComponents();
    jTextField1.setText("WHATEVER");    
}
于 2013-04-15T07:09:27.997 に答える