gpt4 book ai didi

c# - EPPlus - 如何使用模板

转载 作者:IT王子 更新时间:2023-10-29 04:54:17 26 4
gpt4 key购买 nike

我最近发现了 EPPlus ( http://epplus.codeplex.com/ )。我的项目中有一个 excel .xlsx 文件,其中包含所有样式化的列标题。我在他们的网站上看到您可以使用模板。

有谁知道如何或可以提供如何将我的 template.xlsx 文件与 EPPlus 一起使用的代码示例?我希望能够简单地将我的数据加载到行中而不会弄乱标题。

最佳答案

我最终采用的解决方案:

using System.IO;
using System.Reflection;
using OfficeOpenXml;

//Create a stream of .xlsx file contained within my project using reflection
Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("EPPlusTest.templates.VendorTemplate.xlsx");

//EPPlusTest = Namespace/Project
//templates = folder
//VendorTemplate.xlsx = file

//ExcelPackage has a constructor that only requires a stream.
ExcelPackage pck = new OfficeOpenXml.ExcelPackage(stream);

之后,您可以对从模板加载的 .xlsx 文件使用所需的 ExcelPackage 的所有方法。

关于c# - EPPlus - 如何使用模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9571581/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com