摘要: NPOI是基于POI开发,是一种不需要Office插件既能操作Excel,Work等public class ExcelRender { /// /// 根据Excel列类型获取列的值 /// /// Excel列 /// private static string GetCellValue(ICell cell) { if (cell == null) return string.Empty; switch (... 阅读全文
posted @ 2014-03-24 10:23 lan 阅读(514) 评论(0) 推荐(0) 编辑