美文网首页
Poi 导出excel 官网

Poi 导出excel 官网

作者: 冰J冰 | 来源:发表于2016-04-20 11:27 被阅读51次

    http://poi.apache.org/spreadsheet/quick-guide.html#DataFormats

    Paste_Image.png

    其中

    //行高
    rowAll.setHeightInPoints((5*sheet.getDefaultRowHeightInPoints()));
    //合并cell
       sheet.addMergedRegion(new CellRangeAddress(0,0,0,headers.length));
    

    导出文件名乱码

    response.addHeader("Content-Disposition", "attachment;filename="
         + new String(name.getBytes("gb2312"), "iso8859-1"));
    
    

    列长度适应

    
    sheet.autoSizeColumn(y);
    

    相关文章

      网友评论

          本文标题:Poi 导出excel 官网

          本文链接:https://www.haomeiwen.com/subject/fuvzlttx.html