JXL 重命名工作表
您好,我有一个 excel 模板,我加载了该模板并想更改其中的工作表名称。
WritableWorkbook workbook = jxl.Workbook.createWorkbook(file1,template);
该工作簿有 n 张。我想更改单张纸的名称。如果删除,有一个名为的方法,
workbook.removeSheet(<sheet index>)
我找不到任何这样的直接重命名方法。
有人可以在这方面帮助我吗?
Hi I have a template excel which I load and would like to change a sheet name in that.
WritableWorkbook workbook = jxl.Workbook.createWorkbook(file1,template);
This workbook has n sheets. I would like to change the name of a single sheet. Incase of remove there is a method called
workbook.removeSheet(<sheet index>)
I dont find any such direct method for rename.
Can someone help me in this regard.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
似乎不存在直接的方法。我会尝试 copySheet(oldName, newName,newIndex) 后跟 removeSheet(oldIndex)
No direct method seems to exist. I'd try a copySheet(oldName, newName,newIndex) followed by a removeSheet(oldIndex)
并修改名称
and to modify the name