.NET C# - 导入 Excel 文件 - 工作表名称!

发布于 2024-10-16 08:54:48 字数 533 浏览 2 评论 0原文

我正在使用 NPOI 库将一些数据从 Excel 工作表导入到我的数据库中。

我很好奇的一个早期问题通常是,一开始,您会看到这样的内容:

snippet

 using (FileStream fs = File.Open(filename, FileMode.Open, FileAccess.Read))
                {
                    HSSFWorkbook templateWorkbook = new HSSFWorkbook(fs);
                    HSSFSheet sheet = templateWorkbook.GetSheet("Sales");

我的查询是,当工作表的名称每次都不同时会发生什么,例如我计划导入销售数据,我从供应商收到的工作簿中的工作表按日期命名。

有什么方法可以指定 GetSheet();只获取工作簿中的第一张工作表?

任何指点将不胜感激,

谢谢大家:)

I'm using the NPOI Library to import some data from an excel sheet to my database.

One early issue I'm curious about, is typically, to begin, you would have something like this:

snippet

 using (FileStream fs = File.Open(filename, FileMode.Open, FileAccess.Read))
                {
                    HSSFWorkbook templateWorkbook = new HSSFWorkbook(fs);
                    HSSFSheet sheet = templateWorkbook.GetSheet("Sales");

My query is, what happens when the name of the worksheet is different each time, e.g. I plan to import sales data, and the sheets within the workbooks I receive from suppliers are titled by date.

Is there any way that you can specify GetSheet(); to just get the first sheet in the workbook?

Any pointers would be much appreciated,

thanks guys :)

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

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

发布评论

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

评论(1

浮生面具三千个 2024-10-23 08:54:48

如果没有尝试过,我会假设您正在寻找 getSheetAt

所以它会是:

HSSFSheet sheet = templateWorkbook.GetSheetAt(0);

Without trying it out I'd assume that you're looking for getSheetAt.

So it would be:

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