JXL 重命名工作表

发布于 2024-11-02 02:17:56 字数 303 浏览 1 评论 0原文

您好,我有一个 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 技术交流群。

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

发布评论

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

评论(2

稀香 2024-11-09 02:17:56

似乎不存在直接的方法。我会尝试 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)

战皆罪 2024-11-09 02:17:56
workbook.createSheet("Name", i);
WritableSheet excelSheet = workbook.getSheet(i);

并修改名称

excelSheet.setName("new name");
workbook.createSheet("Name", i);
WritableSheet excelSheet = workbook.getSheet(i);

and to modify the name

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