标签: java apache-poi
我需要根据内容调整行的高度。 是否有类似cell.autoSizeColumn()的方法来执行此操作?
cell.autoSizeColumn()
答案 0 :(得分:-5)
您可以使用for循环:
totalCells = cell.getPhysicalNumberOfCells(); for(ii=0;ii<totalCells;ii++){ Write your build code here }
该网站的帮助文档也有很多帮助。