1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
public class ajout extends JFrame implements ActionListener,ItemListener
{
private Button bouton;
private TextField nom, prix;
private JPanel panel;
private Checkbox box;
private JLabel lab;
private JFrame frame;
public ajout()
{
super();
panel = new JPanel();
panel.setLayout(new FlowLayout(FlowLayout.LEFT,4,2));
nom = new TextField("nom", 10);
prix = new TextField("prix ", 10);
nom.setBackground(Color.yellow);
panel.add(nom);
panel.add(prix);
String pilote = "com.mysql.jdbc.Driver";
try{
//Chargement de mon pilote
Class.forName(pilote);
//Connexion à ma base mysql avec mon login et mot de passe ( à vous de changer cela)
Connection connexion = DriverManager.getConnection("jdbc:mysql://localhost/creperie","root","yess");
//Création de mon statement qui va me permettre d'executer mes requetes
Statement instruction = connexion.createStatement();
//Ma table s'appelle creperie et tout ce qui reste dépend d'elle
//Vous devez changer certaines infos comme le nom de la table et celui des colonnes
ResultSet resultat = instruction.executeQuery("SELECT DISTINCT type FROM carte");
JLabel lab = new JLabel("type");
panel.add(lab);
while(resultat.next())
{
String resul = resultat.getString("type");
Checkbox box = new Checkbox(resul);
panel.add(box);
box.addItemListener(this);
}
}
catch (Exception e){
System.out.println("echec pilote : "+e);
}
bouton = new Button("ajouter");
panel.add(bouton);
bouton.addActionListener(this);
JFrame frame = new JFrame();
frame.setContentPane(panel);
frame.setSize(300,300);
frame.setVisible(true);
}
public void itemStateChanged (ItemEvent evt)
{
Object obj = evt.getSource();
if (obj == box)
{
String result = box.getLabel();
System.out.println(result);
}
}
public void actionPerformed(ActionEvent e)
{
if ( (Button) e.getSource() == bouton )
{
JOptionPane.showMessageDialog(null,"nom : "+nom.getText()+" "+ "prix : "+prix.getText()+" "+"type :" );
}
}
public static void main(String[] args)
{
ajout aj = new ajout();
}
} |
Partager