이 글에서는 Apache Poi를 통해 Excel 예제 코드를 생성하기 위한 Java를 주로 소개합니다. 편집자는 이것이 꽤 좋다고 생각합니다. 이제 여러분과 공유하고 참고용으로 제공하겠습니다. 편집기를 따라 살펴보겠습니다
먼저 jar
maven이 종속성을 추가합니다
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.15</version> </dependency>
처음에는 poi인 줄 알았는데, 그런 다음 필요한 클래스가 없다는 것을 알고 있는 Poi의 종속성을 직접 추가했습니다. 확인해 보니 poi-ooxml에서 사용하는 클래스라는 것을 알게 되었습니다
Excel 문서를 나타내는 XSSFWorkbook
XSSFSheet는 문서의 시트를 나타냅니다.
XSSFRow는 시트의 행을 나타냅니다.
XSSFCell, 행의 각 항목 값을 나타냅니다.
가장 기본적인 사용
//创建excel文档 XSSFWorkbook workbook = new XSSFWorkbook(); //创建sheet XSSFSheet sheet = workbook.createSheet("sheetName"); int rownum=0; //创建首行 XSSFRow firstrow = sheet.createRow(rownum++); int cellnum = 0; //把保存在titles中的各个列名,分别在row中创建cell for(String key : titles){ XSSFCell cell = firstrow.createCell(cellnum++); cell.setCellValue(key); } //下面可以继续创建行 //把excel写到要写的outputStream中 workbook.write(output); //最后关闭 workbook.close();
작은 예 1
리플렉션을 사용하여 각 속성 (꺼내려면 getXxx 사용), Excel에 작성
ExcelUtil.java
package me.paul.excelDemo; import java.io.IOException; import java.io.OutputStream; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.apache.poi.xssf.usermodel.XSSFCell; import org.apache.poi.xssf.usermodel.XSSFRow; import org.apache.poi.xssf.usermodel.XSSFSheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; public class ExcelUtil { public <T> void getExcel(List<T> list,Class<T> c,OutputStream output) throws IOException, IllegalAccessException, IllegalArgumentException, InvocationTargetException{ Map<String,Method> methodMap = new LinkedHashMap<>(); Method[] methods = c.getDeclaredMethods(); for(int i=0;i<methods.length;i++){ Method method = methods[i]; String name = method.getName(); Pattern pattern = Pattern.compile("get(.*)"); Matcher matcher = null; if((matcher = pattern.matcher(name)).matches()){ name = matcher.group(1); char ch = name.charAt(0); char newch = (char) (ch + 32); name = name.replace(ch,newch); methodMap.put(name, method); } } XSSFWorkbook workbook = new XSSFWorkbook(); XSSFSheet sheet = workbook.createSheet(c.getCanonicalName()); int rownum=0; XSSFRow firstrow = sheet.createRow(rownum++); int cellnum = 0; for(String key : methodMap.keySet()){ XSSFCell cell = firstrow.createCell(cellnum++); cell.setCellValue(key); } for(T t : list){ XSSFRow row = sheet.createRow(rownum++); cellnum = 0; for(String key:methodMap.keySet()){ Method method = methodMap.get(key); //设置可访问,之前不知道这方法,所以关于反射那篇文章有错误,见谅见谅 method.setAccessible(true); Object obj = method.invoke(t); XSSFCell cell = row.createCell(cellnum++); cell.setCellValue(obj== null ? "":obj.toString()); } } workbook.write(output); workbook.close(); } }
App.java 테스트용으로 사용
package me.paul.excelDemo; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.List; public class App { public static void main(String[] args) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, IOException { List<User> list = new ArrayList<>(); User u = new User(); u.setId(1); u.setName("Paul"); u.setAge(18); list.add(u); u = new User(); u.setId(2); u.setName("Johnson"); u.setAge(20); list.add(u); u = new User(); u.setId(3); u.setName("David"); u.setAge(22); list.add(u); OutputStream output = new FileOutputStream("/home/paul/user.xlsx"); new ExcelUtil().getExcel(list, User.class,output); output.close(); } }
테스트 결과 스크린샷
피>위 내용은 Java가 Apache Poi를 통해 Excel을 생성하는 방법에 대한 자세한 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!