1、设置JAVA导出Excel数据得票率(百分比)
public Style getPercentageStyle(Cells cells, int row, int column){
Style style = cells.get(row, column).getStyle();
style.setNumber(9);// 百分率
style.setCustom("0.00%");
return style;
}
cells.get(data_beginRown,khzb_data_beginColumn).setStyle(this.getPercentageStyle(cells, data_beginRown,khzb_data_beginColumn));
cells.get(data_beginRown,khzb_data_beginColumn).putValue(Double.parseDouble(lstmapResult.get(0).get("VotePercent").toString())/100); // 得票


