티스토리 뷰
pom.xml에 dependency 추가하기
https://mvnrepository.com/artifact/org.apache.poi/poi/5.2.2
위의 경로에서 dependency 추가 코드가 나와있다
필자는 아래와 같이 추가하였다.
<!-- Apache POI -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>5.2.2</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>5.2.2</version>
</dependency>
HSS와 XSSF 차이
두개 다 엑셀파일을 다루는 라이브러리이다.
HSSF는 오피스 구버전 .xls 확장자를 가지는 엑셀파일
XSSF는 상위버전에서 .xlsx 확장자를 가진 엑셀파일
XSSF가 더 많은 기능을 제공한다.
Error
https://wldnjd2.tistory.com/63
전체코드
package excel_test.web;
import java.io.FileInputStream;
@Controller
public class formExcelController {
/*
* 엑셀에 폼형태 유지하기
*/
@RequestMapping(value = "/formExcelFile.do")
public void excel02() throws IOException{
//엑셀 파일 경로
String inputfileName = "C:\\input\\temp2.xlsx";
String outputfileName = "C:\\output\\temp2.xlsx";
//FileInputStream로 파일 읽어오기
FileInputStream readfile = new FileInputStream(inputfileName);
//Workbook 생성, xlsx 파일 read
XSSFWorkbook xworkbook = new XSSFWorkbook(readfile);
//엑셀 파일의 시트 = 1번시트
XSSFSheet xssfSheet = xworkbook.getSheetAt(0);
//초기화
XSSFRow xssfRow = null;
XSSFCell xssfCell = null;
//엑셀에 데이터 입력하기
for(int i=4; i<25; i++) {
xssfSheet.getRow(i).getCell(3).setCellValue((int)(Math.random()*100));
}
//강제로 계산하게함
xworkbook.setForceFormulaRecalculation(true);
// //형변환
// xssfRow = xssfSheet.createRow(4);
// xssfCell = xssfRow.createCell(3);
// xssfCell.setCellType(xssfCell.CELL_TYPE_NUMERIC);
// xssfCell.setCellValue(100);
//
//저장
FileOutputStream makefile = new FileOutputStream(outputfileName);
xworkbook.write(makefile);
//종료
readfile.close(); //FileInputStream
makefile.close(); //FileOutputStream
}
}
POI 라이브러리를 이용해서 엑셀 파일 만드는건 그렇게 어렵지 않다!
하지만 중간에 getCell VS createCell, getRow VS createRow 를 구분 할 필요가 있다.!
Ref
https://good4uprin.tistory.com/35
https://stratosphere.tistory.com/236
https://alliwannado-start.tistory.com/15
'JAVA' 카테고리의 다른 글
자바1.8, ORACLE 1.9c (0) | 2022.11.29 |
---|---|
엑셀 다운로드 (AbstractXlsxView) (0) | 2022.09.08 |
JAVA POI 라이브러리 사용 시 레코드 값 제거 에러해결 (0) | 2022.06.13 |
API Server Test 01 | postman 사용 (0) | 2022.06.03 |
예외처리란 (0) | 2022.04.22 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- shp2pgsql
- 공간데이터병합
- getCell
- su postgres 안됨
- 공간데이터
- yumrepository
- Postgresql12
- 인터넷안되는환경에서설치
- Some resources were not updated.
- 폐쇄망에서rpm설치
- Postgis
- 리눅스폐쇄망
- mybatisif
- Geoserver
- createRow
- Centos7에서 Postgresql12 설치
- postgis 설치
- 리눅스
- jdbcType
- CreateCell
- 부하측정
- yumdownloader
- apachepoi
- getRow
- svn프로젝트불러오기
- setForceFormulaRecalculation
- SVN
- 엑셀POI
- 폐쇄망에서패키지설치
- OpenLayers
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함