我想String (returns string :odb.getCloseDate())
在下面的代码中将其转换为日期。但是我没有得到这种格式的输出。请"23/10/2013"
纠正我做错的地方。在数据库表中的值是这个格式:2013-06-30,我通过 bean 检索这个数据,即 odb.getCloseDate()。现在我需要以这个格式显示这个日期,即 23/10/2013。
HSSFCell row1 = row.createCell((short) j);
//row1.setCellType(row1.CELL_TYPE_NUMERIC);
try
{
//row1.setCellValue( Date.parse(odb.getCloseDate()));
DateFormat formatter;
Date date;
formatter = new SimpleDateFormat("dd/MM/yyyy");
row1.setCellValue(date = formatter.parse(odb.getCloseDate()));
}
catch (Exception e)
{
row1.setCellValue(odb.getCloseDate());
}