夏天的味道hh 2017-03-28 02:31 采纳率: 0%
浏览 2384
已结题

求问poi怎样读取excel条件格式的字体颜色

求问poi怎样读取excel条件格式的字体颜色,求问poi怎样读取excel条件格式的字体颜色,求问poi怎样读取excel条件格式的字体颜色,求问poi怎样读取excel条件格式的字体颜色

  • 写回答

2条回答 默认 最新

  • threenewbee 2017-03-28 03:17
    关注
     HSSFRow row = sheet.getRow(某行);
    HSSFCell cell = row.getCell((short)某列);
    HSSFCellStyle cellStyle = cell.getCellStyle();
    HSSFFont font = cellStyle.getFont(workbook);
    font = getColor();
    
    评论

报告相同问题?