如何在现有 Excel 工作表中的 2 行之间插入新行
我想使用现有的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为通常的方法是将所有其他行向下移动,然后将新数据写入留下的行。
因此,如果您想在第 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)