如何从时间对象中删除日期?

时间:2014-08-28 04:22:19

标签: java apache-poi

我正在尝试使用Apache POI在excel单元格中节省时间[hh:mm:ss]。我写的代码是Follow-

  FileOutputStream out = new FileOutputStream("dateFormat.xls");
  HSSFWorkbook hssfworkbook = new HSSFWorkbook();
  HSSFSheet sheet = hssfworkbook.createSheet("new sheet");
  HSSFCellStyle cs = hssfworkbook.createCellStyle();
  HSSFDataFormat df = hssfworkbook.createDataFormat();
  cs.setDataFormat(df.getFormat("h:mm:ss"));
  HSSFRow row = sheet.createRow((short)0);
  HSSFCell cell = row.createCell((short)0);
  //cell.setCellValue(new Time(567898));
  cell.setCellValue(new Time(1, 6, 55));
  cell.setCellStyle(cs);
  hssfworkbook.write(out);
  out.close();

现在的问题是它包含日期和时间。当我在这个代码生成的Excel工作表中执行sum个单元格时。它正在给出incorrect结果。

 cell.setCellValue(new Time(3, 4, 4));  --->01-01-1970  03:04:04 AM [in excel sheet]
 cell2.setCellValue(new Time(1, 6, 51)); --->01-01-1970  01:06:55 AM [in excel sheet]

我尝试提供String值的另一种方法,在这种情况下,结果为Zero

2 个答案:

答案 0 :(得分:2)

您需要设置单元格的样式才能使格式正常工作:

cell.setStyle(cs);

答案 1 :(得分:1)

此问题的工作代码是:

  FileOutputStream out = new FileOutputStream("dateFormat.xls");
  HSSFWorkbook hssfworkbook = new HSSFWorkbook();
  HSSFSheet sheet = hssfworkbook.createSheet("new sheet");
  HSSFCellStyle cs = hssfworkbook.createCellStyle();
  HSSFDataFormat df = hssfworkbook.createDataFormat();
  HSSFFormulaEvaluator evaluator = new HSSFFormulaEvaluator(hssfworkbook);

  cs.setDataFormat(df.getFormat("h:mm:ss"));
  HSSFRow row = sheet.createRow((short)0);
  HSSFCell cell = row.createCell((short)0);


  cell.setCellFormula("TIME(0,3,24)");//this method only sets the formula string and does not calculate the formula value
  cell.setCellType(Cell.CELL_TYPE_FORMULA);//Set the cells type (numeric, formula or string)

  evaluator.evaluateFormulaCell(cell);// it evaluates the formula, and saves the result of the formula
  cell.setCellStyle(cs);



  HSSFRow row2 = sheet.createRow((short)1);
  HSSFCell cell2 = row2.createCell((short)0);


  cell2.setCellFormula("TIME(0,9,54)");
  cell2.setCellType(Cell.CELL_TYPE_FORMULA);
  evaluator.evaluateFormulaCell(cell2);
  cell2.setCellStyle(cs);