.xlsxファイルを読み込んで日付値を取得し、テキストボックスフィールドに入力する必要があります。Javaを使用して2016年5月4日から04/05/2016に日付形式を変換する方法Apache POI
Inは、セル値が04/05/2016であることを示しています。
しかし、セルから日付の値を取得するとき、値は04-May-2016となります。
04-May-2016形式をmm/dd/yyyに変換するにはどうすればよいですか。
コード:
public static String readExcel(String filePath,String fileName,String sheetName,int RowNumber,int ColNumber) throws Exception{
Object result = null;
try
{
sheet=getSheet(filePath, fileName, sheetName);
row=sheet.getRow(RowNumber);
if(row != null)
{
//System.out.println("Row is not empty");
cell= row.getCell(ColNumber);
if(cell!=null)
{
switch (cell.getCellType()) {
case Cell.CELL_TYPE_NUMERIC:// numeric value in excel
if(DateUtil.isCellDateFormatted(cell)){
//DateUtil.truncate(new Date(), java.util.Calendar.DAY_OF_MONTH);
DateFormat formatter = new SimpleDateFormat("dd/MM/yyyy");
result = formatter.format(cell);
System.out.println("Today : " + result);
}
else{
result = new BigDecimal(cell.getNumericCellValue()).toPlainString();
}
break;
case Cell.CELL_TYPE_STRING: // string value in excel
result = cell.getStringCellValue();
break;
case Cell.CELL_TYPE_BOOLEAN: // boolean value in excel
result = cell.getBooleanCellValue();
break;
case Cell.CELL_TYPE_BLANK: // blank value in excel
result = cell.getStringCellValue();
break;
case Cell.CELL_TYPE_ERROR: // Error value in excel
result = cell.getErrorCellValue()+"";
break;
}
}
else
{
return null;
}
}
else
{
//System.out.println("Row is empty");
return null;
}
inputStream.close();
}
catch (Exception ex){
ex.printStackTrace();
}
return result.toString();
}
コンソール:
java.lang.IllegalArgumentException: Cannot format given Object as a Date
at java.text.DateFormat.format(Unknown Source)
at java.text.Format.format(Unknown Source)
at utility.ExcelUtility.readExcel(ExcelUtility.java:116)
手を差し伸べるために私をガイド。
なぜ「SimpleDateFormat」を使用しないのですか? –
はい、** SimpleDateFormat **のみを使用しています。形式を変換できないため、例外が発生します。 –