Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的项目中使用“HSSFWorkbook”创建了 Excel 文件。
每当用户打开 Excel 文件时,它应该显示在“页面布局”视图中,即用户应该能够查看整个页面信息,包括页眉、页脚。但是,我尝试了不同的方式,但我做不到。
对我来说不是很清楚,但是如果您想将整张纸放在一页中,那么您应该执行以下操作:
Workbook wb = new HSSFWorkbook(); Sheet sheet = wb.createSheet("format sheet"); PrintSetup ps = sheet.getPrintSetup(); sheet.setAutobreaks(true); ps.setFitHeight((short)1); ps.setFitWidth((short)1);