使用 Excel 模板并以编程方式更新它

发布于 2024-11-09 17:24:01 字数 336 浏览 4 评论 0原文

我发现这个工具< /a> 但我想知道现在的 net 4.0 是否仍然是正确的方式,或者是否有任何直接的 oob 替代方案。

我只需要以编程方式添加列和更新 Excel 内容。方法有很多,但我需要保留原始文档作为模板。上面的链接准确地解释了要求是什么以及他们为什么创建这样的“ExcelPackage”库。

I found this tool but I wonder if it still the right way nowdays with net 4.0 or is there any straight forward oob alternatives.

I just need to add columns and update excel stuff programatically. There are many ways but I need to keep the original document as a template. The link above explains exactly what the requeriments are and why they created such "ExcelPackage" library.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稳稳的幸福 2024-11-16 17:24:01

快速浏览一下您提供的链接,似乎它实际上会保持原始模板完整,只返回该模板的填充版本。这是使用 Open XML 创建和填充 Excel 文档的一种非常常见的方法,因为它有助于最大限度地减少必须编写的代码量。如果您没有在模板中指定布局、样式、格式等,您将被迫在编码时定义这些内容,这可能会导致代码臃肿。总的来说,像这样的项目或使用 打开 XML SDK 2.0 来创建文档是正确的方法。

A quick look at the link you provided seems like it will in fact keep the original template intact and just return a populated version of that template. This is a pretty common way to create and populate Excel documents using Open XML since it helps to minimize the amount of code you have to write. If you did not specify the layout, styles, formats, etc in a template you would be forced to define those when coding and that could lead to some bloated code. Overall, a project like this or using the Open XML SDK 2.0 to create the documents is the way to go.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文