我可以控制下载的 Excel 电子表格的物理尺寸吗?

发布于 2024-11-30 06:31:06 字数 343 浏览 1 评论 0原文

我的 Web 应用程序使用 Java Excel API 2.6.10 (http://jexcelapi.sourceforge.net/)动态生成 .xls 电子表格。用户单击链接即可打开或保存电子表格。工作正常。

稍微有点烦恼的是,当电子表格打开时,它非常小(就其物理宽度 x 高度尺寸而言),并且用户总是必须手动调整工作表的大小。

有没有办法指定我希望电子表格在用户打开时具有给定的宽度和高度?我猜测 API 允许我指定初始尺寸,或者有某种方法可以通过 HTML 链接本身传递该信息,但我没有看到任何内容。

My web app uses the Java Excel API 2.6.10 (http://jexcelapi.sourceforge.net/) to generate .xls spreadsheets dynamically. The user clicks a link and can either open or save the spreadsheet. Works fine.

The slight annoyance is that when the spreadsheet opens, it is pretty small (in terms of its physical width x height dimensions) and the user always has to resize the sheet manually.

Is there a way to specify that I want the spreadsheet to have some given width and height when the user opens it? I'm guessing that either the API allows me to specify the initial dimensions or else there's some way to pass that information with the HTML link itself, but I'm not seeing anything.

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

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

发布评论

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

评论(1

盗琴音 2024-12-07 06:31:06

这是否满足您的需要:

Window window = workbook.getWindow();        
window.setHeight(450);
window.setWidth(600);

从以下网站找到它: http: //www.teamdev.com/downloads/jexcel/docs/JExcel-PGuide.html#AEN182

希望有帮助!

-贾斯汀

Does this do what you need:

Window window = workbook.getWindow();        
window.setHeight(450);
window.setWidth(600);

Found it from this website: http://www.teamdev.com/downloads/jexcel/docs/JExcel-PGuide.html#AEN182

Hope that helps!

-Justin

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