java操作excel
導(dǎo)入POI.jar包品腹,下載地址:
http://poi.apache.org/download.html
創(chuàng)建excel
public void createExcel() {
try {
@SuppressWarnings("resource")
HSSFWorkbook excelbook = new HSSFWorkbook();
HSSFSheet sheet = excelbook.createSheet("工資表"); // 在索引0的位置創(chuàng)建行(最頂端的行)
HSSFRow row = sheet.createRow((short) 0);
HSSFCell monadism = row.createCell((short) 0); // 在索引0的位置創(chuàng)建單元格(左上端)
monadism.setCellType(HSSFCell.CELL_TYPE_STRING); // 定義單元格為字符串類型
monadism.setCellValue("姓名");// 在單元格中輸入一些內(nèi)容
row.createCell((short) 1).setCellValue("性別"); // 在第一行第二列添加內(nèi)容
row.createCell((short) 2).setCellValue("年齡");
row.createCell((short) 3).setCellValue("部門");
row.createCell((short) 4).setCellValue("職位");
row.createCell((short) 5).setCellValue("工資信息");
FileOutputStream out = new FileOutputStream(outputFile); // 新建輸出文件流
excelbook.write(out);// 把相應(yīng)的Excel工作簿存盤
out.flush();
out.close(); // 操作結(jié)束,關(guān)閉文件
System.out.println("文件創(chuàng)建成功Pン铩!!");
} catch (Exception e) {
e.printStackTrace();
}
}
向excel中輸入數(shù)據(jù)
public void insertvalue(String name, String sex, String age, String dept,
String job, String laborage) {
try {
HSSFWorkbook excelbook = new HSSFWorkbook();
excelbook = new HSSFWorkbook(new FileInputStream(outputFile)); //定義Excel表對象
HSSFSheet sheet = excelbook.getSheet("工資表"); //獲取指定的工作表
int count = sheet.getPhysicalNumberOfRows(); //獲取工作表中總的行數(shù)
HSSFRow row = sheet.createRow((short) count); //新建一行
row.createCell((short) 0).setCellValue(name); // 在索引0的位置創(chuàng)建單元格(左上端)
row.createCell((short) 1).setCellValue(sex);
row.createCell((short) 2).setCellValue(age);
row.createCell((short) 3).setCellValue(dept);
row.createCell((short) 4).setCellValue(job);
row.createCell((short) 5).setCellValue(laborage);
FileOutputStream out;// 新建輸出文件流
out = new FileOutputStream(outputFile);
excelbook.write(out);// 把相應(yīng)的Excel工作簿存盤
out.flush();
} catch (Exception e) {
e.printStackTrace();
}
}
將數(shù)據(jù)庫中的表導(dǎo)出到excel
package cn.edu.hdu.excel.createEXL;
import java.io.File;
import java.io.FileOutputStream;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRichTextString;
import java.sql.*;
/**
* . * Microsoft Excel 寫入器。
* . *
* . * @author wiyee
* .
*/
public class ExcelWriter {
private File xlsFile = null;
private String dateFormat = null;
private HSSFWorkbook workbook = null;
private SimpleDateFormat dateFormatter = null;
/**
* . * 創(chuàng)建一個Excel文件寫入器址否,所有數(shù)據(jù)將寫入到指定的xls文件中
* . *
* . * @param xlsFile 指定目標(biāo)文件位置,原位置已存在同名文件將被覆蓋
* .
*/
public ExcelWriter(File xlsFile) {
this(xlsFile, null);
}
/**
* . * 創(chuàng)建一個Excel文件寫入器碎紊,所有數(shù)據(jù)將寫入到指定的xls文件中佑附;
* . * 寫入日期時以指定格式形式寫入
* . *
* . * @param xlsFile 指定目標(biāo)文件位置,原位置已存在同名文件將被覆蓋
* . * @param dateFormat 日期格式仗考,如果為null則按本地日期格式
* .
*/
public ExcelWriter(File xlsFile, String dateFormat) {
this.setXlsFile(xlsFile);
workbook = new HSSFWorkbook();
try {
FileOutputStream fileoUut = new FileOutputStream(xlsFile);
workbook.write(fileoUut);
fileoUut.close();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 寫入數(shù)據(jù)庫結(jié)果集的列名及數(shù)據(jù)到指定工作薄
*/
private void writeSheet(File file, ResultSet resultSet) throws SQLException {
@SuppressWarnings("resource")
HSSFWorkbook book = new HSSFWorkbook(); // 定義工作薄對象
HSSFSheet sheet = book.createSheet("員工表"); // 創(chuàng)建工作表
ResultSetMetaData metaData = resultSet.getMetaData(); // 獲取關(guān)于 ResultSet對象中列的類型和屬性信息的對象音同。
int rowNum = 0;
HSSFRow header = sheet.createRow(rowNum); // 寫入列名
int colCount = metaData.getColumnCount(); // 獲取數(shù)據(jù)庫表中共有幾列
for (int i = 0; i < colCount; i++) { // 循環(huán)遍歷數(shù)據(jù)表列名
HSSFCell cell = header.createCell(i); // 根據(jù)數(shù)據(jù)庫內(nèi)容創(chuàng)建單元格
writeCell(cell, metaData.getColumnLabel(i + 1)); // 將數(shù)據(jù)庫中的內(nèi)容寫入到單元格內(nèi)
}
while (resultSet.next()) { // 循環(huán)遍歷查詢結(jié)果集
rowNum++;
HSSFRow row = sheet.createRow(rowNum); // 創(chuàng)建一行
for (int i = 0; i < colCount; i++) {
HSSFCell cell = row.createCell(i); // 新建單元格
writeCell(cell, resultSet.getObject(i + 1)); // 將結(jié)果集中內(nèi)容寫入到單元格中
}
}
try {
FileOutputStream fileO = new FileOutputStream(file); // 創(chuàng)建FileOutputStream對象
book.write(fileO);
fileO.close();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 寫入數(shù)據(jù)到指定單元格
*/
private void writeCell(HSSFCell hssFcell, Object object) {
if (object instanceof Date) { // 判斷要寫入的數(shù)值是否為日期類型
Date d = (Date) object;
hssFcell.setCellValue(new HSSFRichTextString(dateFormatter
.format(d)));// 日期以文本形式寫入
} else if (object instanceof Boolean) { // 判斷要寫入的數(shù)值是否為布爾類型
boolean b = (Boolean) object;
hssFcell.setCellValue(b); // 向表格寫入數(shù)據(jù)
} else if (object instanceof Number) { // 判斷要寫入的數(shù)據(jù)是否為數(shù)值類型
double d = ((Number) object).doubleValue();
hssFcell.setCellValue(d);// 向表格寫數(shù)據(jù)
} else {
String s = (String) object;
hssFcell.setCellValue(new HSSFRichTextString(s));
}
}
public ResultSet getRest() {
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
Connection conn = null;
String url = "jdbc:mysql://127.0.0.1:3306/test"; // 定義連接數(shù)據(jù)庫的url
String userName = "wyy"; // 連接數(shù)據(jù)庫的用戶名
String passWord = "123456"; // 連接數(shù)據(jù)庫的密碼
try {
conn = DriverManager.getConnection(url, userName, passWord); // 獲取數(shù)據(jù)庫連接
} catch (SQLException e) {
e.printStackTrace();
}
ResultSet rest = null;
// 定義查詢的SQL語句
String sql = "select * from user_information";
Statement statement;
try {
statement = conn.createStatement(); // 創(chuàng)建Statement實例
rest = statement.executeQuery(sql); // 執(zhí)行SQL語句
} catch (SQLException e) {
e.printStackTrace();
}
return rest;
}
public static void main(String[] args) {
File file = new File("D:\\temp11.xls");
ExcelWriter excelWriter = new ExcelWriter(file);
ResultSet rest = excelWriter.getRest();
try {
excelWriter.writeSheet(file, rest);
} catch (Exception e) {
e.printStackTrace();
}
}
public File getXlsFile() {
return xlsFile;
}
public void setXlsFile(File xlsFile) {
this.xlsFile = xlsFile;
}
public String getDateFormat() {
return dateFormat;
}
public void setDateFormat(String dateFormat) {
this.dateFormat = dateFormat;
}
}
將excel數(shù)據(jù)導(dǎo)入mysql
定義JDBCutil類,在該類中定義獲取數(shù)據(jù)庫連接方法和向數(shù)據(jù)庫中添加數(shù)據(jù)的方法秃嗜。
package cn.edu.hdu.excel.createEXL;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
public class JDBCutil {
public Connection jdbcConnect(){
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
Connection conn = null;
String url = "jdbc:mysql://127.0.0.1:3306/test"; // 定義連接數(shù)據(jù)庫的url
String userName = "wyy"; // 連接數(shù)據(jù)庫的用戶名
String passWord = "123456"; // 連接數(shù)據(jù)庫的密碼
try {
conn = DriverManager.getConnection(url, userName, passWord); // 獲取數(shù)據(jù)庫連接
if (conn != null) {
System.out.println("數(shù)據(jù)庫連接成功权均!");
}
} catch (SQLException e) {
e.printStackTrace();
}
return conn; //返回connection對象
}
public void insertEmp(String[] str){
JDBCutil iteacher = new JDBCutil(); // 創(chuàng)建本類對象
Connection conn = iteacher.jdbcConnect(); // 調(diào)用獲取數(shù)據(jù)庫連接方法
String sql = "insert into user_information(name,sex,age,lab) values('" + str[0] + "','" + str[1] + "','" + str[2] + "','" + str[3] + "')"; // 定義向數(shù)據(jù)庫插入數(shù)據(jù)的SQL語句
try {
Statement statement = conn.createStatement();
statement.executeUpdate(sql); // 執(zhí)行插入的sql語句
} catch (SQLException e) {
e.printStackTrace();
}
}
}
創(chuàng)建ExcelToMysql類
package cn.edu.hdu.excel.createEXL;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import java.io.*;
public class ExcelToMysql {
static JDBCutil util = new JDBCutil();
@SuppressWarnings("resource")
public static void main(String[] args) {
String fileToBeRead = "d:\\temp11.xls";
try {
HSSFWorkbook workbook = new HSSFWorkbook(new FileInputStream(fileToBeRead)); // 創(chuàng)建對Excel工作簿文件的引用
HSSFSheet sheet = workbook.getSheet("員工表"); // 創(chuàng)建對工作表的引用顿膨。
int rows = sheet.getPhysicalNumberOfRows(); //獲取表格的行數(shù)
for (int r = 1; r < rows; r++) { //循環(huán)遍歷表格的行
String value =""; //定義保存讀取內(nèi)容的String對象
HSSFRow row = sheet.getRow(r); //獲取單元格中指定的行對象
if (row != null) {
int cells = row.getPhysicalNumberOfCells(); //獲取單元格中指定列對象
for (short c = 1; c < cells; c++) { //循環(huán)遍歷單元格中的列
HSSFCell cell = row.getCell((short) c); //獲取指定單元格中的列
if (cell != null) {
if (cell.getCellType() == HSSFCell.CELL_TYPE_STRING) { //判斷單元格的值是否為字符串類型
value += cell.getStringCellValue()+",";
} else if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) { //判斷單元格的值是否為數(shù)字類型
value += cell.getNumericCellValue()+",";
} else if(cell.getCellType() == HSSFCell.CELL_TYPE_BOOLEAN){ //判斷單元格的值是否為布爾類型
value += cell.getStringCellValue()+",";
}
}
}
}
String[] str1 = value.split(",");
System.out.println(str1[0]+str1[1]);//將字符串進(jìn)行分割
util.insertEmp(str1); //調(diào)用向數(shù)據(jù)庫插入數(shù)據(jù)方法
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
問題:將excel中數(shù)據(jù)導(dǎo)入mysql中后,字變成了問號叽赊。
尚未解決