EPPlus:将excel文件中的数据导入PDF显示错误的日期格式

时间:2014-06-20 06:48:19

标签: excel pdf epplus migradoc

我正在使用EPPlus从XLSX文件中读取数据,然后使用MigraDoc将其转换为PDF。但是日期字段显示了一些双重值。

例如:2014-06-17 19.25.14在PDF中变为41807.8091898148。

_book = _package.Workbook;
_sheet = _book.Worksheets[1];
Table _table;
for (int row = 5; row <= end.Row; row++)
{
   Row _row = _table.AddRow();
   for ((int col = 1; col <= end.Column; col++)
      _row.Cells[col - 1].AddParagraph(_sheet.Cells[row, col].Value.ToString());
}
 _pdfRenderer.RenderDocument();

如何更正?

0 个答案:

没有答案