e ai pessoal eu fiz um programinha no Applet usando o combobox mais eu queria fazer isso usando servlet como eu faço olha só como eu fiz
package br.com.caixa;
import java.awt.BorderLayout;
import javax.swing.JPanel;
import javax.swing.JApplet;
import javax.swing.JComboBox;
import javax.swing.JLabel;
public class TJComboBox extends JApplet {
private JPanel jContentPane = null;
private JComboBox jComboBox = null;
private JLabel jLabel = null;
String[]componentes = {"Monitor","Teclado","Mouse","Scaner","Modem","CDROM","RAM","Disquete"};
/**
* This is the xxx default constructor
*/
public TJComboBox() {
super();
}
/**
* This method initializes this
*
* @return void
*/
public void init() {
this.setSize(300, 200);
this.setContentPane(getJContentPane());
}
/**
* This method initializes jContentPane
*
* @return javax.swing.JPanel
*/
private JPanel getJContentPane() {
if (jContentPane == null) {
jLabel = new JLabel();
jLabel.setText("Selecione uma Categoria");
jContentPane = new JPanel();
jContentPane.setLayout(new BorderLayout());
jContentPane.add(getJComboBox(), BorderLayout.NORTH);
jContentPane.add(jLabel, BorderLayout.SOUTH);
}
return jContentPane;
}
/**
* This method initializes jComboBox
*
* @return javax.swing.JComboBox
*/
private JComboBox getJComboBox() {
if (jComboBox == null) {
jComboBox = new JComboBox(componentes);
jComboBox.addItemListener(new java.awt.event.ItemListener() {
public void itemStateChanged(java.awt.event.ItemEvent e) {
jLabel.setText((String)jComboBox.getSelectedItem());
//verificando os indices
System.out.println(jComboBox.getSelectedIndex());
}
});
}
return jComboBox;
}
}
valeu e até mais