使用java代码将MySQL数据库导出为ex​​cel

时间:2012-09-05 14:33:18

标签: java mysql jexcelapi

我想将我的MySQL数据库导出为.xls或.txt格式。我怎么能在java中做到这一点。我想要做的是我的应用程序中有一个按钮按下,我的数据库导出到excel文件。 感谢。

5 个答案:

答案 0 :(得分:2)

对MySQL进行系统调用:

mysql -e'SELECT * FROM table'>file.csv

答案 1 :(得分:0)

导出整个数据库的最简单方法是使用本机数据库工具。看一下这篇文章:http://www.electrictoolbox.com/mysql-export-data-csv/

或者,您可以使用连接到DB的JDBC或ORM来实现代码,读取数据并使用您想要的任何格式对其进行写入。

答案 2 :(得分:0)

您可以使用BIRT并将数据库生成为您想要的任何格式。如果您使用的是struts2,则可以使用datagrid将其导出为CSV或Excel。

您可能会发现它很有用:

SELECT ....... INTO OUTFILE '/tmp/result.text' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\n' FROM table  

答案 3 :(得分:0)

您可以使用Mysql-JDBC driverApache POI

答案 4 :(得分:0)

使用此代码

它非常适合.xls文件

package com.demo.export;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.usermodel.WorkbookFactory;

public class dataExportService {
    public void getDefendants(Connection con , String db) throws Exception  { 
        @SuppressWarnings("unused")
        Workbook readWorkbook = WorkbookFactory.create(new FileInputStream("C:\\Users\\CEPL\\Desktop\\test.xls") );
        @SuppressWarnings("resource")
        Workbook writeWorkbook = new HSSFWorkbook();
        Sheet desSheet = writeWorkbook.createSheet("new sheet");

        Statement stmt = null;
        ResultSet rs = null;
        try{
            String query ="SELECT * FROM "+db;

            stmt = con.createStatement();
            rs = stmt.executeQuery(query);
            ResultSetMetaData rsmd = rs.getMetaData();
            int columnsNumber = rsmd.getColumnCount();

            Row desRow1 = desSheet.createRow(0);
            for(int col=0 ;col < columnsNumber;col++) {
                Cell newpath = desRow1.createCell(col);
                newpath.setCellValue(rsmd.getColumnLabel(col+1));
            }
            while(rs.next()) {
                System.out.println("Row number" + rs.getRow() );
                Row desRow = desSheet.createRow(rs.getRow());
                for(int col=0 ;col < columnsNumber;col++) {
                    Cell newpath = desRow.createCell(col);
                    newpath.setCellValue(rs.getString(col+1));  
                }
                FileOutputStream fileOut = new FileOutputStream("C:\\Users\\CEPL\\Desktop\\test.xls");
                writeWorkbook.write(fileOut);
                fileOut.close();
            }
        }
        catch (SQLException e) {
            System.out.println("Failed to get data from database");
        }
    }

}