第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在java中鏈接多個(gè)框架

如何在java中鏈接多個(gè)框架

我創(chuàng)建了分開(kāi)的登錄和注冊(cè)框架,它們都連接到 MySQL。如果我只運(yùn)行注冊(cè)框架,我可以將一個(gè)新用戶插入到數(shù)據(jù)庫(kù)中。但是,如果我運(yùn)行其中包含注冊(cè)框架的登錄框架并按注冊(cè),即使填寫(xiě)了文本字段,添加到注冊(cè)框架中的按鈕也不起作用。// And this is register frame class where I add user package YASAR;import java.awt.BorderLayout;import java.awt.EventQueue;import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.border.EmptyBorder;import javax.swing.JTextField;import javax.swing.JButton;import javax.swing.JLabel;import javax.swing.JOptionPane;import java.sql.*;import java.awt.event.ActionListener;import java.awt.event.ActionEvent;import java.awt.Font;public class KullaniciEkle extends JFrame {    public static JPanel contentPane;    public static JTextField textField;    public static JTextField textField_1;    public static JTextField textField_2;    public static JLabel lblIsim;    public static JLabel lblSoyisim;    public static JButton btnNewButton = new JButton("Ekle");    /**     * Launch the application.     */    public static void main(String[] args) {        EventQueue.invokeLater(new Runnable() {            public void run() {                try {                    KullaniciEkle frame = new KullaniciEkle();                    frame.setVisible(true);                    try {    Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/yasar","ozkan","******");    btnNewButton.addActionListener(new ActionListener() {        public void actionPerformed(ActionEvent e) {        String input="INSERT INTO kullanicilar (TC,name,surname) VALUES(?,?,?)";            try {                PreparedStatement ps=con.prepareStatement(input);                ps.setInt(1, Integer.parseInt(textField.getText()));                ps.setString(2, textField_1.getText());                ps.setString(3, textField_2.getText());                //ps.execute();                if(ps.executeUpdate()>0) {                    JOptionPane.showMessageDialog(null, "user added","user add",JOptionPane.OK_CANCEL_OPTION);                }            }
查看完整描述

1 回答

?
森欄

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超5個(gè)贊

您需要將此代碼放入您的Constructor.


btnNewButton.addActionListener(new ActionListener() {

        public void actionPerformed(ActionEvent e) {


        String input="INSERT INTO kullanicilar (TC,name,surname) VALUES(?,?,?)";

            try {



                PreparedStatement ps=con.prepareStatement(input);


                ps.setInt(1, Integer.parseInt(textField.getText()));

                ps.setString(2, textField_1.getText());

                ps.setString(3, textField_2.getText());



                //ps.execute();

                if(ps.executeUpdate()>0) {

                    JOptionPane.showMessageDialog(null, "user added","user add",JOptionPane.OK_CANCEL_OPTION);

                }



            }catch(SQLException f) {

                f.printStackTrace();

            }


            finally {System.out.println("pressed");}


                frame.setVisible(false);

                new GirisEkrani().setVisible(true);


                }

    });

最后,它看起來(lái)像這樣,


import java.awt.EventQueue;


import javax.swing.JFrame;

import javax.swing.JPanel;

import javax.swing.border.EmptyBorder;

import javax.swing.JTextField;

import javax.swing.JButton;

import javax.swing.JLabel;

import javax.swing.JOptionPane;


import java.sql.*;

import java.awt.event.ActionListener;

import java.awt.event.ActionEvent;

import java.awt.Font;


public class KullaniciEkle extends JFrame {


    public static JPanel contentPane;

    public static JTextField textField;

    public static JTextField textField_1;

    public static JTextField textField_2;

    public static JLabel lblIsim;

    public static JLabel lblSoyisim;

    public static JButton btnNewButton = new JButton("Ekle");


    /**

     * Launch the application.

     */

    public static void main(String[] args) {

        EventQueue.invokeLater(new Runnable() {

            public void run() {

                try {

                    KullaniciEkle frame = new KullaniciEkle();

                    frame.setVisible(true);

                } catch (Exception e) {

                    e.printStackTrace();

                }

            }

        });

    }


    /**

     * Create the frame.

     */

    public KullaniciEkle() {

        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        setBounds(100, 100, 285, 300);

        contentPane = new JPanel();

        contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));

        setContentPane(contentPane);

        contentPane.setLayout(null);


        textField = new JTextField();

        textField.setBounds(87, 67, 96, 19);

        contentPane.add(textField);

        textField.setColumns(10);


        textField_1 = new JTextField();

        textField_1.setBounds(87, 112, 96, 19);

        contentPane.add(textField_1);

        textField_1.setColumns(10);


        textField_2 = new JTextField();

        textField_2.setBounds(87, 160, 96, 19);

        contentPane.add(textField_2);

        textField_2.setColumns(10);

        btnNewButton.setFont(new Font("Tahoma", Font.PLAIN, 10));


        btnNewButton.setBounds(93, 232, 85, 21);

        contentPane.add(btnNewButton);


        JLabel lblTc = new JLabel("TC");

        lblTc.setFont(new Font("Tahoma", Font.PLAIN, 10));

        lblTc.setBounds(10, 70, 45, 13);

        contentPane.add(lblTc);


        lblIsim = new JLabel("\u0130sim");

        lblIsim.setFont(new Font("Tahoma", Font.PLAIN, 10));

        lblIsim.setBounds(10, 115, 45, 13);

        contentPane.add(lblIsim);


        lblSoyisim = new JLabel("Soyisim");

        lblSoyisim.setFont(new Font("Tahoma", Font.PLAIN, 10));

        lblSoyisim.setBounds(10, 163, 45, 13);

        contentPane.add(lblSoyisim);


        btnNewButton.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent e) {

                btnNewButtonActionPerformed(e);

            }

        });


    }


    private void btnNewButtonActionPerformed(ActionEvent evt) {

        try {

            Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/yasar", "ozkan", "******");


            String input = "INSERT INTO kullanicilar (TC,name,surname) VALUES(?,?,?)";

            try {


                PreparedStatement ps = con.prepareStatement(input);


                ps.setInt(1, Integer.parseInt(textField.getText()));

                ps.setString(2, textField_1.getText());

                ps.setString(3, textField_2.getText());


                //ps.execute();

                if (ps.executeUpdate() > 0) {

                    JOptionPane.showMessageDialog(null, "user added", "user add", JOptionPane.OK_CANCEL_OPTION);

                }


            } catch (SQLException f) {

                f.printStackTrace();

            } finally {

                System.out.println("pressed");

            }


            //Instead of frame use this keyword

            this.setVisible(false);

            new GirisEkrani().setVisible(true);


        } catch (SQLException e) {

            e.printStackTrace();

        }

    }

}

注意:-這不是與數(shù)據(jù)庫(kù)通信的最佳實(shí)踐。


查看完整回答
反對(duì) 回復(fù) 2022-12-15
  • 1 回答
  • 0 關(guān)注
  • 105 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)