html怎么把excel表格合并单元格,c# – 将Epplus Excel转换中的合并单元格处理为HTML...

我正在使用Epplus将Excel电子表格呈现为

HTML.到目前为止,它非常非常好,除了一件事……跨越合并的细胞.我似乎无法使逻辑正确.我想我会把它扔出去看看社区将如何处理它.到目前为止,这是我的代码.

public String ParseExcelStamps(String FileName)

{

FileInfo theFile = new FileInfo(FileName);

String html = "";

using (ExcelPackage xlPackage = new ExcelPackage(theFile))

{

var workbook = xlPackage.Workbook;

if (workbook != null)

{

for (int j = 1; j <= workbook.Worksheets.Count; j++)

{

Tab tab = new Tab();

html+= "

var worksheet = workbook.Worksheets[j];

tab.Title = worksheet.Name;

if (worksheet.Dimension == null) { continue; }

int rowCount = 0;

int maxColumnNumber = worksheet.Dimension.End.Column;

var convertedRecords = new List>(worksheet.Dimension.End.Row);

var excelRows = worksheet.Cells.GroupBy(c => c.Start.Row).ToList();

excelRows.ForEach(r =>

{

rowCount++;

html += String.Format("

");

var currentRecord = new List(maxColumnNumber);

var cells = r.OrderBy(cell => cell.Start.Column).ToList();

Double rowHeight = worksheet.Row(rowCount).Height;

for (int i = 1; i <= maxColumnNumber; i++)

{

var currentCell = cells.Where(c => c.Start.Column == i).FirstOrDefault();

//look aheads for colspan and rowspan

ExcelRangeBase previousCellAbove = null;

ExcelRangeBase previousCell = null;

ExcelRangeBase nextCell = null;

ExcelRangeBase nextCellBelow = null;

try { previousCellAbove = worksheet.Cells[rowCount-1, i]; }catch (Exception) { }

try { previousCell = worksheet.Cells[rowCount, (i - 1)]; }catch (Exception) { }

try { nextCell = worksheet.Cells[rowCount, (i + 1)]; }catch (Exception) { }

try { nextCellBelow = worksheet.Cells[rowCount+1, i]; }catch (Exception) { }

if ((previousCell != null) && (previousCell.Merge) && (currentCell != null) && (currentCell.Merge)){continue;}

if ((previousCellAbove != null) && (previousCellAbove.Merge) && (currentCell != null)) {continue; }

if (currentCell == null)

{

html += String.Format("

{0}", String.Empty);

}

else

{

int colSpan = 1;

int rowSpan = 1;

if ((nextCell != null) && (nextCell.Merge) && (currentCell.Merge)) {

colSpan = 2;

// Console.WriteLine(String.Format("{0} - {1}", currentCell.Address, nextCell.Address));

}

if ((nextCellBelow != null) && (nextCellBelow.Merge) && (currentCell.Merge)) {

Console.WriteLine(String.Format("{0} - {1}", currentCell.Address, nextCellBelow.Address));

}

html += String.Format("

{2}", colSpan, rowSpan, currentCell.Value);

}

}

html += String.Format("

");

});

html += "

";

}//worksheet loop

}

}

return html;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Epplus 简介:Epplus是一个使用Open Office XML(Xlsx)文件格式,能读写Excel 2007/2010文件的开源组件 功效:支持对excel文档的汇入汇出,图表(excel自带的图表基本都可以实现)的列印 使用:首先应该下载Epplus的dll文件 1> 添加dll文件至工程bin文件 2>在程式添加引用 using OfficeOpenXml; using OfficeOpenXml.Drawing; using OfficeOpenXml.Drawing.Chart; using OfficeOpenXml.Style; 3>所有的操作语句需要放置在下面的using using (ExcelPackage package = new ExcelPackage()) { } 4.添加新的sheet var worksheet = package.Workbook.Worksheets.Add(“sheet1"); 5.单元格赋值,这里多说一句,NPOI必须先创建单元格,然后再给单元格赋值,而Epplus不需要,直接找到单元格进行赋值就可以了. worksheet.Cells[int row, int col].Value = “”; 或者 worksheet.Cells["A1"].Value = “”; 6.合并单元格 worksheet.Cells[int fromRow, fromCol, int toRow,int toCol].Merge = true; 7.获取某一个区域 var rangeData= worksheet.Cells[fromRow, fromCol, toRow, toCol]; 8.设置字体 worksheet.Cells.Style.Font.Name= “正楷”; worksheet.Cells.Style.Font.Color worksheet.Cells.Style.Font.Size 9.设置边框的属性 worksheet.Cells.Style.Border.Left.Style= ExcelBorderStyle.Thin ; worksheet.Cells.Style.Border.Right.Style= ExcelBorderStyle.Thin; worksheet.Cells.Style.Border.Top.Style= ExcelBorderStyle.Thin; worksheet.Cells.Style.Border.Bottom.Style= ExcelBorderStyle.Thin; 10.对齐方式 worksheet.Cells.Style.HorizontalAlignment=ExcelHorizontalAlignment.Center; worksheet.Cells.Style.VerticalAlignment = ExcelVerticalAlignment.Bottom; 11. 设置整个sheet的背景色 worksheet.Cells.Style.Fill.PatternType= ExcelFillStyle.Solid; worksheet.Cells.Style.Fill.BackgroundColor.SetColor(Color.LightBlue); 12.折行显示 worksheet.Cells.Style.WrapText= true; 13.单元格自动适应大小 worksheet.Cells.Style.ShrinkToFit= true; 14.格式化单元格value值 worksheet.Cells.Style.Numberformat.Format= "0.00"; 15.锁定 worksheet.Cells["A1"].Style.Locked= true; 注:此处锁定某一个单元格的时候,只有在整个sheet被锁定的情况下才可以被锁定,不然加上锁定属性也是不起作用的~~ 二.Epplus另一个出色的地方就是支持图表的列印.功能的實現很簡單,難點在于需求比較細的點上,epplus可能不好實現,但是總的來說是比較好的一個列印圖表的工具 1.简单介绍一下可以实现的图表类型: 直條圖、折綫圖、圓形圖、橫條圖、散佈圖、區域圖 等類型的圖表 2.使用:分为三步, 第一步是将需要显示在图表的 数据列印到excel. 第二步是创建所需要的图表类型(折线图为例) var chart = (worksheet.Drawings.AddChart("LineChart", eChartType.Line) as ExcelLineChart); 第三步为图表添加第一步列印的数据区间就可以了 chart.Series.Add(Y軸顯示的數據源,X軸顯示的數據源) 3.图表的功能就这样实现了,很简单吧

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值