Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 함수
- array
- html
- select
- 정의
- was
- TO_DATE
- jsp
- javascript
- Java
- eGov
- POI
- 암호화
- JVM
- sql
- eGovFramework
- spring
- Ajax
- input
- mybatis
- Oracle
- 오류
- CSS
- jQuery
- 태그
- json
- 개념
- web.xml
- controller
- 과정평가형
Archives
- Today
- Total
목록CELL (1)
web developer
[java] poi 서체(font), 셀 스타일(cellStyle) 변경
poi 라이브러리를 활용해 서체, 셀 스타일 변경하기 Font font = workbook.Font(); font.setFontName("맑은 고딕"); font.setColor(IndexedColors.BLUE.getIndex()); font.setFontHeightPoints((short) 11); font.setItalic(true); CellStyle yellow = workbook.createCellStyle(); yellow.setFillForegroundColor(IndexedColors.LIGHT_YELLOW.getIndex()); yellow.setFillPattern((short) 1); yellow.setAlignment((short) HorizontalAlignment.CENTER...
Language/Java
2024. 2. 29. 18:00