JPanel を JOptionPane に挿入し、後でこれらの JTextField からすべての情報を取得する方法を教えてください。たとえば、次のようなものがあります。
JPanel jp = new JPanel();
jp.setLayout(new GridLayout(0,1);
JPanel up = new JPanel();
JPanel down = new JPanel();
jp.add(up);jp.add(down);
JTextField jt1 = new TextField("habababa1"); jt2 = new JTextField("habababa2");
JRadioButton jrb1 = new JRadioButton("JRB1");
up.add(jt1);down.add(jt2); down.add(jrb1);
radioButton などからデータを取得するにはどうすればよいですか? [OK]をクリックした後。