2014-08-28 34 views
1

我想在使用Apache POI的Excel单元格中节省时间[hh:mm:ss]。我写的代码如下 -如何从时间对象中删除日期?

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

回答

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); 
2

您需要设置单元格样式,以便格式的工作:

cell.setStyle(cs); 
+0

感谢您的回答,我忘了提及我已经在我的代码中写入'cell.setStyle(cs)'。你可以请建议一些其他的解决方案。 – Priyank 2014-08-28 04:43:21

+1

查看http://stackoverflow.com/a/13466371/1651233 – BobTheBuilder 2014-08-28 04:59:15

相关问题