码迷,mamicode.com
首页 > Web开发 > 详细

Aspose.cells 导出Excel

时间:2014-07-17 23:30:00      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   数据   io   

//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

标签:style   blog   color   os   数据   io   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!