poi导入excel

poi导入excel,第1张

方法/步骤

一,  ExcelUtils 工具类(也就是解析EXCEL文件,判断EXCEL的类型以及数据的类型)

import  javaioIOException;

import  javaioInputStream;

import  javamathBigDecimal;

import  javatextSimpleDateFormat;

import  javautilArrayList;

import  javautilDate;

import  javautilList;

import  orgapachepoihssfusermodelHSSFDateUtil;

import  orgapachepoihssfusermodelHSSFWorkbook;

import  orgapachepoissusermodelCell;

import  orgapachepoissusermodelRow;

import  orgapachepoissusermodelSheet;

import  orgapachepoissusermodelWorkbook;

import  orgapachepoixssfusermodelXSSFWorkbook;

public class ExcelUtils {

private final static  String excel2003L = “xls” ;    // 2003-版本的excel

private final static  String excel2007U = “xlsx” ;   // 2007 +版本的excel

/

描述:获取IO流中的数据,组装成List <List <Object>对象

@param in,fileName

@返回

@throws IOException

/

public   List <List <Object> getBankListByExcel(InputStream in,String fileName)  throws  Exception {

列表<List <Object> list =  null ;

//创建的Excel工作薄

Workbook work =  this getWorkbook(in,fileName);

if (null  == work){

抛出新的 异常(“创建Excel工作薄为空!” );

}

Sheet sheet =  null ;  //页数

行row =  null ;  //行数

Cell cell =  null ;  //列数

list =  new  ArrayList <List <Object >>();

//遍历的Excel中所有的片

for  (int  i =  0 ; i <workgetNumberOfSheets(); i ++){

sheet = workgetSheetAt(i);

if (sheet == null ){ continue ;}

//遍历当前片中的所有行

for  (int  j = sheetgetFirstRowNum(); j <= sheetgetLastRowNum(); j ++){

row = sheetgetRow(j);

if (row == null || rowgetFirstCellNum()== j){ continue ;}

//遍历所有的列

列表<Object> li =  new  ArrayList <Object>();

for  (int  y = rowgetFirstCellNum(); y <rowgetLastCellNum(); y ++){

cell = rowgetCell(y);

liadd(this getValue(cell));

}

listadd(LI);

}

}

return 单

}

/

描述:根据文件后缀,自适应上传文件的版本

@param inStr,fileName

@返回

@throws异常

/

public   Workbook getWorkbook(InputStream inStr,String fileName)  throws  Exception {

工作簿wb =  null ;

String fileType = fileNamesubstring(fileNamelastIndexOf(“。” ));

if (excel2003Lequals(fileType)){

wb =  new  HSSFWorkbook(inStr);  // 2003-

} else if (excel2007Uequals(fileType)){

wb =  new  XSSFWorkbook(inStr);  // 2007 +

} else {

抛出新的 异常(“解析的文件格式有误!” );

}

返回 wb;

}

/

描述:对表格中数值进行格式化

@param单元格

@返回

/

//解决擅长类型问题,获得数值

public   String getValue(Cell cell){

String value =  “” ;

if (null == cell){

返回 值

}

switch  (cellgetCellType()){

//数值型

案例 CellCELL_TYPE_NUMERIC:

if  (HSSFDateUtilisCellDateFormatted(cell)){

//如果是date类型则,获取该单元格的日期值

Date date = HSSFDateUtilgetJavaDate(cellgetNumericCellValue());

SimpleDateFormat format =  new  SimpleDateFormat(“yyyy-MM-dd” );

value = formatformat(date);;

} else  { //纯数字

BigDecimal big = new  BigDecimal(cellgetNumericCellValue());

value = bigtoString();

//解决12340去掉后面的0

if (null != value &&!“” equals(valuetrim())){

String [] item = valuesplit(“[。]” );

if (1 <itemlength && “0” equals(item [ 1 ])){

value = item [ 0 ];

}

}

}

break;

//字符串类型

案例 CellCELL_TYPE_STRING:

value = cellgetStringCellValue()。toString();

break;

//公式类型

案例 CellCELL_TYPE_FORMULA:

//读公式计算值

value = StringvalueOf(cellgetNumericCellValue());

if  (valueequals(“NaN” )){ //如果获取的数据值为非法值,则转换为获取字符串

value = cellgetStringCellValue()。toString();

}

break;

//布尔类型

案例 CellCELL_TYPE_BOOLEAN:

value =  “” + cellgetBooleanCellValue();

break;

默认值:

value = cellgetStringCellValue()。toString();

}

if (“null” endsWith(valuetrim())){

value = “” ;

}

返回 值

}

}

二,定义两个实体类,一个是对于的Excel文件,解析它的数据(ExcelBean),另一个是导入数据库表的实体类(人)

ExcelBeanjava

<strong> <span style = “font-size:18px;” > import  orgapachepoixssfusermodelXSSFCellStyle;

公共类 ExcelBean  实现 javaioSerializable {

private  String headTextName; //列头(标题)名

private  String propertyName; //对应字段名

私有 整数列; //合并单元格数

私人 XSSFCellStyle cellStyle;

public  ExcelBean(){

}

public  ExcelBean(String headTextName,String propertyName){

这个headTextName = headTextName;

这个propertyName = propertyName;

}

public  ExcelBean(String headTextName,String propertyName,Integer cols){

super ();

这个headTextName = headTextName;

这个propertyName = propertyName;

这个cols = cols;

}

public  String getHeadTextName(){

return  headTextName;

}

public void  setHeadTextName(String headTextName){

这个headTextName = headTextName;

}

public  String getPropertyName(){

return  propertyName;

}

public void  setPropertyName(String propertyName){

这个propertyName = propertyName;

}

public  Integer getCols(){

返回列 ;

}

公共无效   setCols(Integer cols){

这个cols = cols;

}

上市  XSSFCellStyle getCellStyle(){

返回  cellStyle;

}

公共无效   setCellStyle(XSSFCellStyle cellStyle){

这个 cellStyle = cellStyle;

}

} </ span> </ strong>

peoplejava

import  javautilDate;

公共课 人

私有 整数id

private  String userName;

私人 字符串密码;

私人 整数年龄;

私人 日期;

public  Integer getId(){

返回  id

}

public void  setId(Integer id){

这个id = id;

}

public  String getUserName(){

return  userName;

}

public void  setUserName(String userName){

这个userName = userName ==  null  ? null  :userNametrim();

}

public  String getPassword(){

返回 密码

}

public void  setPassword(String password){

这个password = password ==  null  ? null  :passwordtrim();

}

public  Integer getAge(){

回归 年龄

}

public void  setAge(Integer age){

这个age = age

}

public  Date getDate(){

退货 日期

}

public void  setDate(Date date){

这个date = date

}

}

/

@param args

/

public static void main(String[] args)

{

Scanner in = new Scanner(Systemin);

// 例如 "1234567890123456789012345678901234567890123456789"

String inputString = innextLine();

BigDecimal bigDecimal = new BigDecimal(inputString);

String string = bigDecimaltoString();

char[] charArray = stringtoCharArray();

StringBuffer buffer = new StringBuffer();

// 从个位数

for (int i = charArraylength - 1; i >= 0; i--)

{

Systemoutprintln("第" + (charArraylength - i) + "位:" + charArray[i]);

bufferappend(charArray[i] + " ");

}

Systemoutprintln(buffertoString());

}

以上就是关于poi导入excel全部的内容,包括:poi导入excel、java中如何获得一个整数的最高位数、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9809099.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-02
下一篇 2023-05-02

发表评论

登录后才能评论

评论列表(0条)

保存