0

Java アプリケーションで JXDatePicker を使用しており、その値を MySQL データベースに保存したいと考えています。格納されるデータベース値は日付型です。

これが私のコードです:

final JXDatePicker dodc = new JXDatePicker(System.currentTimeMillis());
final SimpleDateFormat formater = new SimpleDateFormat("yyyy/MM/dd");
Date datedodc;

dodc.setBounds(250, 260, 150, 20);
    content.add(dodc);
    dodc.setForeground(BLACK);
    dodc.setBackground(WHITE);
    dodc.setFont(new Font("Arial", Font.BOLD, 12));
    dodc.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
             datedodc = dodc.getDate();
            System.out.println(formater.format(dodc.getDate()));
        }
    });

この値を出力すると、次の出力が得られます。

Feb 05 00:00:00 IST 2013

日付型の値を次の形式で mysql に保存したい:yyyy-mm-dd どうすればよいですか?

値を保存しようとすると、Eclipse で次のエラーが表示されます。

com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Feb 05 00:00:00 IST 2013,Mon Feb 18 00:00:00 IST 2013,'Gujju Enterprise',4,'faaf' at line 1

        at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:936)
        at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2934)
        at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1616)
        at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1708)
        at com.mysql.jdbc.Connection.execSQL(Connection.java:3249)
        at com.mysql.jdbc.Statement.executeUpdate(Statement.java:1350)
        at com.mysql.jdbc.Statement.executeUpdate(Statement.java:1266)
        at inwardRecord.save(inwardRecord.java:379)
        at inwardRecord.actionPerformed(inwardRecord.java:304)
        at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
        at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
        at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
        at java.awt.Component.processMouseEvent(Unknown Source)
        at javax.swing.JComponent.processMouseEvent(Unknown Source)
        at java.awt.Component.processEvent(Unknown Source)
        at java.awt.Container.processEvent(Unknown Source)
        at java.awt.Component.dispatchEventImpl(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Window.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.run(Unknown Source)

com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Feb 05 00:00:00 IST 2013,Mon Feb 18 00:00:00 IST 2013,'Gujju Enterprise',4,'faaf' at line 1
4

3 に答える 3

0

これを試して:

DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
dateString = format.format(date.getDate());
于 2014-03-21T16:09:16.347 に答える
0

このアプローチを試してください:

int selectedYear =  (int)  datePicker.getModel().getYear();
int selectedMonth = (int)  datePicker.getModel().getMonth();
int selectedDay = (int)  datePicker.getModel().getDay();

String selectedDate = selectedYear +"-"+selectedMonth+"-"+selectedDay;

selectedDateをデータベースに保存できるようになりました。

于 2014-10-03T13:33:04.123 に答える