2017-10-23 6 views
0
public class createChart { 

public static void main(String[] args) { 
    ArrayList<Integer> studentList = new ArrayList<>(); 
    ArrayList<Integer> gradeList = new ArrayList<>(); 
    ArrayList<String> header = new ArrayList<>(); 

    header.add("Attendance Sheet"); 

    for(int i = 1; i <= 20; i++){ 
     studentList.add(i); 
     if(i <= 20){ 
      gradeList.add((80+i)); 
     } 

    } 

    int bordernum = 2; 
    try { 
     FileOutputStream fileOut = new FileOutputStream("Attendance Sheet.xls"); 
     HSSFWorkbook workbook = new HSSFWorkbook(); 
     HSSFSheet worksheet = workbook.createSheet("Attendance sheet"); 



     // row 1 for Prinitng attendance sheet in center 
     HSSFRow row0 = worksheet.createRow((short) 0);//1 
     HSSFCell cellmid = row0.createCell((short) (gradeList.size()/2)-1);//2 
     cellmid.setCellValue(header.get(0));//3 
     HSSFCellStyle cellStylem = workbook.createCellStyle();//4 
     cellStylem.setFillForegroundColor(HSSFColor.GOLD.index);//5 
     cellmid.setCellStyle(cellStylem);//6 
     createBorders(workbook, cellmid, 1); 
     HSSFCell cellmid2 = row0.createCell((short) (gradeList.size()/2));//2 
     createBorders(workbook, cellmid2, 1); 



     // row 2 with all the dates in the correct place 
     HSSFRow row1 = worksheet.createRow((short) 1);//1 
     HSSFCell cell1; 
     for(int y = 0; y < gradeList.size(); y++){ 

      cell1 = row1.createCell((short) y+1);//2 
      cell1.setCellValue(gradeList.get(y));//3 
      createBorders(workbook, cell1, bordernum); 

     } 
     HSSFCellStyle cellStylei = workbook.createCellStyle();//4 
     cellStylei.setFillForegroundColor(GREEN.index);//5 



     // row 3 and on until the studentList.size() create the box. 
     int counter = 0; 
     for(int stu = 2; stu <= (studentList.size()+1); stu++){ 
      HSSFRow Row = worksheet.createRow((short) stu);//1 
      for(int gr = 0; gr <= gradeList.size(); gr++){ 
       if(gr == 0){ 
        HSSFCell cell = Row.createCell((short) 0);//2 
        cell.setCellValue(studentList.get(counter));//3 
        HSSFCellStyle cellStyle2 = workbook.createCellStyle();//4 
        cellStyle2.setFillForegroundColor(IndexedColors.YELLOW.getIndex()); 
        cellStyle2.setFillForegroundColor(HSSFColor.GOLD.index);//5 
        cell.setCellStyle(cellStyle2);//6 
        createBorders(workbook, cell, 2); 
       }else{ 
        HSSFCell Cell = Row.createCell((short) gr);//2 
        createBorders(workbook, Cell, 3); 
       } 


      } 
      counter++; 
     } 
     workbook.write(fileOut); 
     fileOut.flush(); 
     fileOut.close(); 
    } catch (FileNotFoundException e) { 
     e.printStackTrace(); 
    } catch (IOException e) { 
     e.printStackTrace(); 
    } 

} 
public static void createBorders(HSSFWorkbook workbook,HSSFCell cell, int x){ 
    if(x == 1){ 
     HSSFCellStyle style = workbook.createCellStyle(); 
     //style.setFillBackgroundColor(HSSFColor.HSSFColorPredefined.LIGHT_BLUE.getIndex()); 
     //style.setFillPattern(FillPatternType.SOLID_FOREGROUND); 
     style.setBorderBottom(BorderStyle.THICK); 
     style.setBottomBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     style.setBorderLeft(BorderStyle.THICK); 
     style.setLeftBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     style.setBorderRight(BorderStyle.THICK); 
     style.setRightBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     style.setBorderTop(BorderStyle.THICK); 
     style.setTopBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     cell.setCellStyle(style); 
    } 
    else if(x == 2){ 
     HSSFCellStyle style = workbook.createCellStyle(); 
     //style.setFillBackgroundColor(HSSFColor.HSSFColorPredefined.LIGHT_BLUE.getIndex()); 
     //style.setFillPattern(FillPatternType.SOLID_FOREGROUND); 
     style.setBorderBottom(BorderStyle.MEDIUM); 
     style.setBottomBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     style.setBorderLeft(BorderStyle.MEDIUM); 
     style.setLeftBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     style.setBorderRight(BorderStyle.MEDIUM); 
     style.setRightBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     style.setBorderTop(BorderStyle.MEDIUM); 
     style.setTopBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     cell.setCellStyle(style); 
    }else { 
     HSSFCellStyle style = workbook.createCellStyle(); 
     //style.setFillBackgroundColor(HSSFColor.HSSFColorPredefined.AQUA.getIndex()); 
     //style.setFillPattern(FillPatternType.SOLID_FOREGROUND); 
     style.setBorderBottom(BorderStyle.THIN); 
     style.setBottomBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     style.setBorderLeft(BorderStyle.THIN); 
     style.setLeftBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     style.setBorderRight(BorderStyle.THIN); 
     style.setRightBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     style.setBorderTop(BorderStyle.THIN); 
     style.setTopBorderColor(HSSFColor.HSSFColorPredefined.BLACK.getIndex()); 
     cell.setCellStyle(style); 
    } 

} 

코드는 칼럼 0에서 각 행 (studentList.size() + 2 행 3) studentList의 값을 기록하고 컬럼으로부터 gradesList (1 행에서 기록을 사용하여 엑셀의 셀을 강조하는 방법 1 to gradesList.size() +1) 출석 도표APACHE POI HSSF

연두색으로 모든 studentList를 강조 표시하고 밝은 주황색으로 gradesList를, 노란색으로 Title (머리글)을 나머지 부분을 강조 표시하려면 어떻게해야합니까? 하늘색 상자가있는 빈 상자? Image 2 I need my sheet to look like this

Image 1 is the product of the code above

나는 이미지 2

+0

downvoting하지 않지만 나에게 숙제와 많이 비슷합니다. –

+0

또한, 아직 시도한 것이 있습니까? 나만의 아이디어? –

답변

0

당신은 당신이 국경을 만들 때 그것을 무시 다음 라인 5의 배경 색상을 생성되지만로 이미지 1에서 내 시트를 변환하는 데 도움이 필요합니다. 문제를 해결하려면 동시에 모든 스타일을 적용해야합니다.

그 외에도, 당신은 예를 들어 FillPattern을 포함해야한다 :

 style.setFillForegroundColor(HSSFColor.GOLD.index); 
     style.setFillPattern(CellStyle.SOLID_FOREGROUND); 

은 당신이 도움을 줄 수 Apache POI Quick Guide

희망하는 예를 찾을 수 있습니다. 감사합니다. .

+0

당신은 내가 무엇을 줄 지 알려주시겠습니까 style.setFillPattern (CellStyle.SOLID_FOREGROUND); // 6은 변경되지 않습니다. –

+0

또한 아파치 포이 퀵 가이드는 채우고 색은 XSSF 시트를 사용하지만 HSSF 사용 –

+0

createBorders 메서드에서 style.setFillForegroundColor (HSSFColor.GREEN.index) 행을 추가 할 수 있습니다. 및 style.setFillPattern (CellStyle.SOLID_FOREGROUND); X == 2 일 때, 예를 들어 배경이 그 세포에 어떻게 추가되는지 볼 수 있습니다. 그럼, 당신은 스타일을 적용하는 예제로 사용할 수 – ervidio