POI给单元格加下划线
//超级链接的样式,蓝色并接默认有下划线
CellStyle hlink_style = workbook.createCellStyle();
Font hlink_font = workbook.createFont();
hlink_font.setUnderline(Font.U_SINGLE);
hlink_font.setColor(IndexedColors.BLUE.getIndex());
hlink_style.setFont(hlink_font);
cell0.setCellStyle(hlink_style);