2016-06-16 5 views
0

첫 번째 jpanel에서 사용자 입력을 받고 두 번째 jpanel로 전달하려고합니다. 버튼을 클릭 한 후 어떻게 새 Jpanel을 열 수 있습니까? Dispose가 첫 번째 jpanel에서 작동하지만 두 번째 jpanel이 보이지 않습니다.Java 새 JPanel이 표시되지 않습니다.

먼저 JPanel의

private void jToggleButton1ActionPerformed(java.awt.event.ActionEvent evt) {            
    String name =txtName.getText(); 
    String address= txtAddress.getText(); 
    int port= Integer.parseInt(txtPort.getText()); 
    login(name,address, port); 



}            

private void login(String name , String address, int port){ 
    dispose(); 
    new Client(name,address,port); 

} 
/** 
* @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(Login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); 
    } catch (InstantiationException ex) { 
     java.util.logging.Logger.getLogger(Login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); 
    } catch (IllegalAccessException ex) { 
     java.util.logging.Logger.getLogger(Login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); 
    } catch (javax.swing.UnsupportedLookAndFeelException ex) { 
     java.util.logging.Logger.getLogger(Login.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 Login().setVisible(true); 
     } 
    }); 
} 

로그인 기능

new Client(name,address,port).setVisible(true); 

에서 두 번째 JPanel의

public class Client extends javax.swing.JFrame { 

/** 
* Creates new form Client 
*/ 

private String name,address; 
private int port; 

public Client() 
{ 
    initComponents(); 
} 

public Client(String name,String address, int port) { 
    this.name=name; 
    this.address=address; 
    this.port=port; 


} 
    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(Client.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); 
    } catch (InstantiationException ex) { 
     java.util.logging.Logger.getLogger(Client.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); 
    } catch (IllegalAccessException ex) { 
     java.util.logging.Logger.getLogger(Client.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); 
    } catch (javax.swing.UnsupportedLookAndFeelException ex) { 
     java.util.logging.Logger.getLogger(Client.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 Client().setVisible(true); 
     } 
    }); 
} 

답변

0

public Client(String name,String address, int port) { 
    this.name=name; 
    this.address=address; 
    this.port=port; 
    initcomponents(); 

} 
,536을 다음과 같이 클라이언트 생성자를 업데이트
+0

감사합니다. JPanel이 열립니다. 하지만 두 번째 패널은 보이지 않습니다. 빈 jpanel 만 표시합니다. – hiranya

+0

고맙습니다. 그것은 작동합니다. – hiranya

관련 문제