你好,我不知道如何将日期从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");
            }


问候和非常感谢

最佳答案

好吧,我不是在看您的代码,但是关于从JDateChooser添加日期,您可以使用此代码

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


然后可以将其添加到

ps.setString(0,a);


在上面的代码中,


  一个是JDateChooser
  
  ps是PreparedStatement


希望能帮助到你

10-03 00:25