java—将日期从jdatechooser插入mysql数据库

t8e9dugd  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(324)

你好,我不知道如何将一个日期从jdatechooser插入到mysql转换为接受mysql的格式。。。。。。我和mvc fremework一起工作。。。我用下面的方法插入数据。。。。
是我的驾驶课吗
添加一个jtxfile只是为了尝试使用我的应用程序调用它

txtFecha2 (this.vistaAlumno.getTxtFecha2().getText())

在视图中,我将每个组件都设置为get和set方法,以便从另一个类中使用它们。。。
jdatechooser称为jdfecha。

public void actionPerformed(ActionEvent e) {

        if (e.getSource() == vistaAlumno.getBtnInsertar()) {

            //obtiene ID de producto  this.mimodelo.getDatosVentaxFechas( this.frmconsulta.__fecha1.getDate(), this.frmconsulta.__fecha2.getDate() ) );
            //String cat[] = this.vistaAlumno.__lista_categorias.getSelectedItem().toString().split("-");
            if (this.modeloAlumno.NuevoProducto(
                    this.vistaAlumno.getTxtMatricula().getText(),
                    this.vistaAlumno.getTxtNombre().getText(),
                    this.vistaAlumno.getTxtApellido_p().getText(),
                    this.vistaAlumno.getTxtApellido_m().getText(),
                    this.vistaAlumno.getTxtSexo().getText(),
                    this.vistaAlumno.getTxtFecha2().getText(),
                    this.vistaAlumno.getTxtDireccion().getText(),
                    this.vistaAlumno.getTxtCorreo().getText()// ,
            // cat[0].trim()
            )) {
                this.vistaAlumno.getJtDatosAlumno().setModel(this.modeloAlumno.getTablaAlumno()); //actualiza JTable
                JOptionPane.showMessageDialog(null, "Nuevo Alumno Registrado");
            } else {
                JOptionPane.showMessageDialog(null, "Error: Verifique los datos del nuevo Alumno");
            }

大家好,非常感谢

ovfsdjhp

ovfsdjhp1#

我不是在看你的代码,但是对于从jdatechooser添加日期,你可以使用这个代码

String datee=((JTextField)a.getDateEditor().getUiComponent()).getText();

然后你可以把它加到

ps.setString(0,a);

在上述代码中,
是jdatechooser
ps为编制报表
希望有帮助

相关问题