如何在现有 Excel 工作表中的 2 行之间插入新行

发布于 2024-10-31 23:22:11 字数 125 浏览 0 评论 0原文

我想使用现有的 HSSFWorkBook (Apache POI) 并在具有新值的两个现有行之间插入新行。我尝试使用 sheet.shiftRows(n1, n2, n3),但它会在移动值后覆盖。我该怎么做呢?

I want to use an existing HSSFWorkBook (Apache POI) and insert new rows in between two existing rows with new values.I tried with sheet.shiftRows(n1, n2, n3), but it overwrites after shifting the values. How can I do it?

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

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

发布评论

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

评论(1

夜光 2024-11-07 23:22:11

我认为通常的方法是将所有其他行向下移动,然后将新数据写入留下的行。

因此,如果您想在第 14 行和第 15 行之间添加两行,请将行从第 15 行开始向下移动 2 行,然后将新值写入第 15 行和第 16 行。(旧的第 15 行将成为第 17 行)

I think the usual way to do it is to shift all your other rows down, then write your new data into the rows that were left behind.

So, if you wanted to add in two rows between rows 14 and 15, shift rows from 15 onwards down by two, then write your new values into rows 15 and 16. (Your old row 15 would then be row 17)

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