gpt4 book ai didi

apache-poi - 无法使用 apache POI 将工作表缩放百分比设置为 120

转载 作者:行者123 更新时间:2023-12-03 08:24:18 25 4
gpt4 key购买 nike

如何使用 Apache POI 将工作表缩放百分比设置为 120?

我试过 sheet.setZoom(5,4)但它的输出放大到 125%。
此外,此方法仅接受整数。

任何帮助,将不胜感激。

最佳答案

API docs for the Sheet interface在 Apache POI 状态下:

setZoom(int scale) - Window zoom magnification for current view representing percent values.





setZoom(int numerator, int denominator) Deprecated. 2015-11-23 (circa POI 3.14beta1). Use setZoom(int) instead.



所以尝试:
sheet.setZoom(120);

或者在旧版本的 API 上使用已弃用的方法:
sheet.setZoom(12, 10);

注意,5/4=1.25 这就是你放大到 125% 的原因

关于apache-poi - 无法使用 apache POI 将工作表缩放百分比设置为 120,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41634254/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com