首页 > Web开发 > 详细

Aspose.cells 导出Excel

时间:2014-07-17 23:29:51      阅读:518      评论:0      收藏:0      [点我收藏+]
//Export
private void btnExport_Click(object sender, RoutedEventArgs e)
{
string strDataTime = System.DateTime.Now.ToString("yyyyMMdd_HHmmss");
string strFileName = "buyf_Template" + strDataTime;

SaveFileDialog save = new SaveFileDialog();
save.DefaultExt = "xlsx";
save.Filter = "Excel File|*.xlsx";
save.FileName = strFileName;

if (save.ShowDialog() == true)
{
//获得数据源
DataClasses1DataContext db = new DataClasses1DataContext();
List<TBProduct> pros = new List<TBProduct>();
pros = (from p in db.TBProduct select p).Take(20).ToList();

string strReportPath = AppDomain.CurrentDomain.BaseDirectory + @"\Template\Buyf_Template.xlsx";
//string strReportPath = System.Windows.Forms.Application.ExecutablePath + @"\Template\Buyf_Template.xlsx";

Workbook book = new Workbook(strReportPath);
Worksheet sheet = book.Worksheets[0];

sheet.Cells[0, 0].PutValue("Item One");
sheet.Cells[0, 1].PutValue("Item Two");
sheet.Cells[0, 2].PutValue("Item Three");
sheet.Cells[0, 3].PutValue("Item Four");

for (int i = 0; i < pros.Count; i++)
{ 
TBProduct pro = pros[i];

sheet.Cells[i + 1, 0].PutValue(pro.No);
sheet.Cells[i + 1, 1].PutValue(pro.Name);
sheet.Cells[i + 1, 2].PutValue(pro.CarNumber);
sheet.Cells[i + 1, 3].PutValue(pro.SRP);
}


book.Save(save.FileName);
MessageBox.Show("Export Successful!");
}
}

Aspose.cells 导出Excel,布布扣,bubuko.com

Aspose.cells 导出Excel

原文:http://www.cnblogs.com/buzi521/p/3851510.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!