.NET C# - 导入 Excel 文件 - 工作表名称!
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有尝试过,我会假设您正在寻找 getSheetAt。
所以它会是:
Without trying it out I'd assume that you're looking for getSheetAt.
So it would be: