Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 C# 中编写具有两个字段(让它们成为 DataTable 的 f1、f2)的 excel 表?
您可以使用OleDb组件通过 SQL 来实现此目的。这个问题给出了一个样本。
OleDb
请注意,要将其用于 Excel 2003 文件,您的程序必须仅编译为 X86,因为 JET 驱动程序仅适用于 32 位。
要编写 Excel 2007/10 文件,您需要使用不同的 JET 驱动程序(请参见此处)。