Package kr.com.inspect.report
Class XlsxReport
- java.lang.Object
-
- kr.com.inspect.report.XlsxReport
-
@Service @PropertySource("classpath:properties/report.properties") public class XlsxReport extends java.lang.ObjectXlsx 타입으로 리스트 파일 생성- Version:
- 1.0
- Author:
- Woo Young, Yeonhee Kim
-
-
Constructor Summary
Constructors Constructor Description XlsxReport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidwriteXlsxMetadata(javax.servlet.http.HttpServletResponse response, java.lang.String path, java.util.List<Metadata> list, java.lang.String flag, java.lang.String title)xlsx 한국어 강의 목록 리스트 작성voidwriteXlsxUtterance(javax.servlet.http.HttpServletResponse response, java.lang.String path, java.util.List<Utterance> list, Metadata metadata, java.lang.String flag)xlsx utterance 리스트 작성
-
-
-
Method Detail
-
writeXlsxMetadata
public void writeXlsxMetadata(javax.servlet.http.HttpServletResponse response, java.lang.String path, java.util.List<Metadata> list, java.lang.String flag, java.lang.String title) throws java.lang.Exceptionxlsx 한국어 강의 목록 리스트 작성- Parameters:
response- 사용자에게 보내는 응답path- 파일 디렉토리list- 객체를 담을 리스트flag- 해당 요청이 download인지, mail인지, sms인지 결정해주는 변수title- 파일 내용의 제목- Throws:
java.lang.Exception- 예외처리
-
writeXlsxUtterance
public void writeXlsxUtterance(javax.servlet.http.HttpServletResponse response, java.lang.String path, java.util.List<Utterance> list, Metadata metadata, java.lang.String flag) throws java.lang.Exceptionxlsx utterance 리스트 작성- Parameters:
response- 사용자에게 보내는 응답path- 파일 디렉토리list- 객체를 담을 리스트metadata- metadata 테이블 정보flag- 해당 요청이 download인지, mail인지, sms인지 결정해주는 변수- Throws:
java.lang.Exception- 예외 처리
-
-