자바 가 poi 를 사용 하여 데이터베이스 에 있 는 데 이 터 를 Excel 로 가 져 오 는 해결 방법

자바 는 poi 를 이용 하여 데이터베이스 에 있 는 데 이 터 를 Excel 로 가 져 옵 니 다.
효과:
image
사용 할 때 먼저 poi 패 키 지 를 프로젝트 의 path 로 가 져 옵 니 다.poi 패 키 지 를 가 져 오 면 됩 니 다.다운로드 후 세 개의 jar 패키지 가 있 습 니 다.
핵심 코드:
데이터베이스 연결:DBConnection.java

package org.xg.db;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
public class DBConnection {
private final String DBUrl ="jdbc:mysql://localhost:3306/notebook" ;
private final String DBDriver ="com.mysql.jdbc.Driver" ;
private final String username ="root" ;
private final String password ="riskfitfeng" ;
private Connection con ;
public DBConnection()
{
try {
Class.forName(DBDriver) ;
con = DriverManager.getConnection(DBUrl,username,password) ;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public Connection getDB()
{
return con ;
}
public void closeDb(ResultSet rs,PreparedStatement ps)
{
if(rs!=null)
{
try {
rs.close() ;
} catch (SQLException e) {
// TODO Auto-generated catch block


e.printStackTrace();
}
}
if(ps!=null)
{
try {
ps.close() ;
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}

excel :MySql2Excel.java

package org.xg.db;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.sql.Connection;
import java.sql.ResultSet;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRichTextString;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
public class MySql2Excel {
public MySql2Excel() throws Exception
{
Connection con = null ;
DBConnection db = new DBConnection() ;
con = db.getDB() ;
String sql ="select * from students" ;
ResultSet rs = con.createStatement().executeQuery(sql) ;
//
int CountColumnNum = rs.getMetaData().getColumnCount() ;
int i =1 ;
// Excel
HSSFWorkbook wb = new HSSFWorkbook() ;
// sheet
HSSFSheet sheet = wb.createSheet("student ") ;
HSSFRow firstrow = sheet.createRow(0); // 0
HSSFCell[] firstcell = new HSSFCell[CountColumnNum];
String[] names = new String[CountColumnNum];
names[0] ="ID";
names[1] =" ";
names[2] =" ";
names[3] =" ";
names[4] =" ";
for(int j= 0 ;j<CountColumnNum; j++){
firstcell[j] = firstrow.createCell((short)j);
firstcell[j].setCellValue(new HSSFRichTextString(names[j]));
}
while(rs.next())
{
//
HSSFRow row = sheet.createRow(i) ; // 1
for(int j=0;j<CountColumnNum;j++)
{
//
HSSFCell cell = row.createCell((short) j) ;
// ,
////
//
cell.setCellValue(new HSSFRichTextString(rs.getString(j+1))) ;
}
i++ ;
}
// ,
OutputStream out = new FileOutputStream("E:\\person.xls") ;
wb.write(out) ;
out.close() ;
System.out.println(" ") ;
rs.close() ;
con.close() ;
}
public static void main(String[] args)
{
try {
@SuppressWarnings("unused")
MySql2Excel excel = new MySql2Excel() ;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}


예 를 들 어 전단 jsp 에서 이렇게 호출 할 수 있 습 니 다.
Excel 로 데이터 내 보 내기
배경 servlet 에 위의 코드 를 쓰 고 마지막 으로 response.sendRedirect(")가 전단 으로 돌아 가 야 합 니 다.

좋은 웹페이지 즐겨찾기