如何使用Apache POI将工作表缩放百分比设置为120?
我试过sheet.setZoom(5,4)
但是它的输出为125%变焦.此方法也只接受整数.
任何帮助,将不胜感激.
Apache POI状态下Sheet接口的API文档:
setZoom(int scale) - 表示百分比值的当前视图的窗口缩放倍率.
和
setZoom(int numerator,int denominator)已过时.2015-11-23(大约POI 3.14beta1).请改用setZoom(int).
所以尝试:
sheet.setZoom(120);
或者在较旧版本的API上使用已弃用的方法:
sheet.setZoom(12, 10);
注意,5/4 = 1.25这就是你放大到125%的原因