数据截断:日期时间值不正确:第1行的列'日期'为''

时间:2015-02-24 14:44:46

标签: java mysql swing

我的应用程序出现此错误:

  

数据截断:日期时间值不正确:第1行“POrder_Date”列的“2-24-2015”

我有MySQL连接器java v-5.1.7

java.util.Date date = new java.util.Date();
DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT);
String date1, mon, datex, year, yearx, currentDate;
int d, d1;

以下代码在我的类中,构造函数:

date1=df.format(date);
    d=date1.indexOf('/');
    mon=date1.substring(0,d);
    d1=date1.lastIndexOf('/');
    datex=date1.substring(d+1,d1);
    yearx=date1.substring(d1+1);
    year="20"+yearx;
    currentDate=mon+"-"+datex+"-"+year;
    System.out.println("current date  "+currentDate);

2 个答案:

答案 0 :(得分:1)

mysql默认日期格式“yyyy-mm-dd”。更改日期格式然后存储。可能会有效。

java.util.Date date = new java.util.Date();
DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT);
String  date1,mon,datex,year,yearx,currentDate;
int d,d1;
date1=df.format(date);
d=date1.indexOf('/');
mon=date1.substring(0,d);
d1=date1.lastIndexOf('/');
datex=date1.substring(d+1,d1);
yearx=date1.substring(d1+1);
year="20"+yearx;
currentDate=mon+"-"+datex+"-"+year;
System.out.println("current date  "+currentDate);
//change currentdate format MM-dd-yyyy into yyyy-MM-dd
try {
        SimpleDateFormat sdf = new SimpleDateFormat("MM-dd-yyyy");
        Date convertedCurrentDate = sdf.parse(currentDate);
        System.out.println(new SimpleDateFormat("yyyy-MM-  dd").format(convertedCurrentDate));
    } catch (ParseException ex) {
        Logger.getLogger(NewJFrame.class.getName()).log(Level.SEVERE, null, ex);
    }

检查打印日期格式,如(2015-05-25)。

答案 1 :(得分:0)

你有两个选择:

使用目前使用rs.updateString(2,podate)的{​​{3}}。将Date对象传递给updateDate()

或全程更改内部日期格式以符合ISO yyyy-mm-dd标准。