包含javapioxls的词条

博主:adminadmin 2022-11-22 22:02:08 47

本篇文章给大家谈谈javapioxls,以及对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。

本文目录一览:

java poi怎么导入excel数据

package poi;

import java.io.FileInputStream;

import java.io.IOException;

import java.io.InputStream;

import java.util.Iterator;

import org.apache.poi.hssf.usermodel.HSSFCell;

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.xssf.usermodel.XSSFWorkbook;

public class ReadExcel001 {

public static void main(String[] args) {

readXml("D:/test.xlsx");

System.out.println("-------------");

readXml("d:/test2.xls");

}

public static void readXml(String fileName){

boolean isE2007 = false; //判断是否是excel2007格式

if(fileName.endsWith("xlsx"))

isE2007 = true;

try {

InputStream input = new FileInputStream(fileName); //建立输入流

Workbook wb = null;

//根据文件格式(2003或者2007)来初始化

if(isE2007)

wb = new XSSFWorkbook(input);

else

wb = new HSSFWorkbook(input);

Sheet sheet = wb.getSheetAt(0); //获得第一个表单

IteratorRow rows = sheet.rowIterator(); //获得第一个表单的迭代器

while (rows.hasNext()) {

Row row = rows.next(); //获得行数据

System.out.println("Row #" + row.getRowNum()); //获得行号从0开始

IteratorCell cells = row.cellIterator(); //获得第一行的迭代器

while (cells.hasNext()) {

Cell cell = cells.next();

System.out.println("Cell #" + cell.getColumnIndex());

switch (cell.getCellType()) { //根据cell中的类型来输出数据

case HSSFCell.CELL_TYPE_NUMERIC:

System.out.println(cell.getNumericCellValue());

break;

case HSSFCell.CELL_TYPE_STRING:

System.out.println(cell.getStringCellValue());

break;

case HSSFCell.CELL_TYPE_BOOLEAN:

System.out.println(cell.getBooleanCellValue());

break;

case HSSFCell.CELL_TYPE_FORMULA:

System.out.println(cell.getCellFormula());

break;

default:

System.out.println("unsuported sell type");

break;

}

}

}

} catch (IOException ex) {

ex.printStackTrace();

}

}

}

参考自

java poi 在服务器生成excel文件

报格式错误是因为你没有填充EXCEL的内容。

正确的做法是:

1, HSSFWorkbook ws = new HSSFWorkbook();//建立新HSSFWorkbook对象

2, Sheet sheet = workbook.createSheet(0); //建立一个新的sheet

3,Row row = sheet.createRow(1); //建立一个新的row对象

4, Cell cell = row.createCell(0); //在row上创建方格即列,

cell.setCellValue(cellValue); //设置这个行中列的值

cell.setCellStyle(cellStyle); //设置样式

java用poi导出excel文件,打开导出的文件时报错,怎么办?

两个原因:

1.你的excel模版本身有问题,可以尝试新建一个模版。

2.你的excel使用了一些POI不支持的函数。

解决办法:

另存是由excel重写了完整的文件,可以解决问题。

关闭文件例子:

FileOutputStream os = new FileOutputStream("workbook.xls");

wb.write(os);

os.close();

在保护状态下execl的格式有可能正在被使用,你这边修改,准确说是线程冲突,一般excel值会作为导出文件的模板,是不会编辑的。你可以在读的时候判断execl是否正在被使用。

下面的代码问题,你可以参考

package com.hwt.glmf.common;

import java.io.IOException;

import java.io.OutputStream;

import java.util.ArrayList;

import java.util.List;

import javax.servlet.http.HttpServletResponse;

import org.apache.poi.hssf.usermodel.HSSFCell;

import org.apache.poi.hssf.usermodel.HSSFCellStyle;

import org.apache.poi.hssf.usermodel.HSSFFont;

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;

import org.apache.poi.hssf.util.CellRangeAddress;

import org.apache.poi.hssf.util.HSSFColor;

/**

* 导出Excel公共方法

* @version 1.0

*

* @author wangcp

*

*/

public class ExportExcel extends BaseAction {

//显示的导出表的标题

private String title;

//导出表的列名

private String[] rowName ;

private ListObject[] dataList = new ArrayListObject[]();

HttpServletResponse response;

//构造方法,传入要导出的数据

public ExportExcel(String title,String[] rowName,ListObject[] dataList){

this.dataList = dataList;

this.rowName = rowName;

this.title = title;

}

/*

* 导出数据

* */

public void export() throws Exception{

try{

HSSFWorkbook workbook = new HSSFWorkbook(); // 创建工作簿对象

HSSFSheet sheet = workbook.createSheet(title); // 创建工作表

// 产生表格标题行

HSSFRow rowm = sheet.createRow(0);

HSSFCell cellTiltle = rowm.createCell(0);

//sheet样式定义【getColumnTopStyle()/getStyle()均为自定义方法 - 在下面 - 可扩展】

HSSFCellStyle columnTopStyle = this.getColumnTopStyle(workbook);//获取列头样式对象

HSSFCellStyle style = this.getStyle(workbook); //单元格样式对象

sheet.addMergedRegion(new CellRangeAddress(0, 1, 0, (rowName.length-1)));

cellTiltle.setCellStyle(columnTopStyle);

cellTiltle.setCellValue(title);

// 定义所需列数

int columnNum = rowName.length;

HSSFRow rowRowName = sheet.createRow(2); // 在索引2的位置创建行(最顶端的行开始的第二行)

// 将列头设置到sheet的单元格中

for(int n=0;ncolumnNum;n++){

HSSFCell cellRowName = rowRowName.createCell(n); //创建列头对应个数的单元格

cellRowName.setCellType(HSSFCell.CELL_TYPE_STRING); //设置列头单元格的数据类型

HSSFRichTextString text = new HSSFRichTextString(rowName[n]);

cellRowName.setCellValue(text); //设置列头单元格的值

cellRowName.setCellStyle(columnTopStyle); //设置列头单元格样式

}

//将查询出的数据设置到sheet对应的单元格中

for(int i=0;idataList.size();i++){

Object[] obj = dataList.get(i);//遍历每个对象

HSSFRow row = sheet.createRow(i+3);//创建所需的行数

for(int j=0; jobj.length; j++){

HSSFCell cell = null; //设置单元格的数据类型

if(j == 0){

cell = row.createCell(j,HSSFCell.CELL_TYPE_NUMERIC);

cell.setCellValue(i+1);

}else{

cell = row.createCell(j,HSSFCell.CELL_TYPE_STRING);

if(!"".equals(obj[j]) obj[j] != null){

cell.setCellValue(obj[j].toString()); //设置单元格的值

}

}

cell.setCellStyle(style); //设置单元格样式

}

}

//让列宽随着导出的列长自动适应

for (int colNum = 0; colNum columnNum; colNum++) {

int columnWidth = sheet.getColumnWidth(colNum) / 256;

for (int rowNum = 0; rowNum sheet.getLastRowNum(); rowNum++) {

HSSFRow currentRow;

//当前行未被使用过

if (sheet.getRow(rowNum) == null) {

currentRow = sheet.createRow(rowNum);

} else {

currentRow = sheet.getRow(rowNum);

}

if (currentRow.getCell(colNum) != null) {

HSSFCell currentCell = currentRow.getCell(colNum);

if (currentCell.getCellType() == HSSFCell.CELL_TYPE_STRING) {

int length = currentCell.getStringCellValue().getBytes().length;

if (columnWidth length) {

columnWidth = length;

}

}

}

}

if(colNum == 0){

sheet.setColumnWidth(colNum, (columnWidth-2) * 256);

}else{

sheet.setColumnWidth(colNum, (columnWidth+4) * 256);

}

}

if(workbook !=null){

try

{

String fileName = "Excel-" + String.valueOf(System.currentTimeMillis()).substring(4, 13) + ".xls";

String headStr = "attachment; filename=\"" + fileName + "\"";

response = getResponse();

response.setContentType("APPLICATION/OCTET-STREAM");

response.setHeader("Content-Disposition", headStr);

OutputStream out = response.getOutputStream();

workbook.write(out);

}

catch (IOException e)

{

e.printStackTrace();

}

}

}catch(Exception e){

e.printStackTrace();

}

}

/*

* 列头单元格样式

*/

public HSSFCellStyle getColumnTopStyle(HSSFWorkbook workbook) {

// 设置字体

HSSFFont font = workbook.createFont();

//设置字体大小

font.setFontHeightInPoints((short)11);

//字体加粗

font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);

//设置字体名字

font.setFontName("Courier New");

//设置样式;

HSSFCellStyle style = workbook.createCellStyle();

//设置底边框;

style.setBorderBottom(HSSFCellStyle.BORDER_THIN);

//设置底边框颜色;

style.setBottomBorderColor(HSSFColor.BLACK.index);

//设置左边框;

style.setBorderLeft(HSSFCellStyle.BORDER_THIN);

//设置左边框颜色;

style.setLeftBorderColor(HSSFColor.BLACK.index);

//设置右边框;

style.setBorderRight(HSSFCellStyle.BORDER_THIN);

//设置右边框颜色;

style.setRightBorderColor(HSSFColor.BLACK.index);

//设置顶边框;

style.setBorderTop(HSSFCellStyle.BORDER_THIN);

//设置顶边框颜色;

style.setTopBorderColor(HSSFColor.BLACK.index);

//在样式用应用设置的字体;

style.setFont(font);

//设置自动换行;

style.setWrapText(false);

//设置水平对齐的样式为居中对齐;

style.setAlignment(HSSFCellStyle.ALIGN_CENTER);

//设置垂直对齐的样式为居中对齐;

style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);

return style;

}

/*

* 列数据信息单元格样式

*/

public HSSFCellStyle getStyle(HSSFWorkbook workbook) {

// 设置字体

HSSFFont font = workbook.createFont();

//设置字体大小

//font.setFontHeightInPoints((short)10);

//字体加粗

//font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);

//设置字体名字

font.setFontName("Courier New");

//设置样式;

HSSFCellStyle style = workbook.createCellStyle();

//设置底边框;

style.setBorderBottom(HSSFCellStyle.BORDER_THIN);

//设置底边框颜色;

style.setBottomBorderColor(HSSFColor.BLACK.index);

//设置左边框;

style.setBorderLeft(HSSFCellStyle.BORDER_THIN);

//设置左边框颜色;

style.setLeftBorderColor(HSSFColor.BLACK.index);

//设置右边框;

style.setBorderRight(HSSFCellStyle.BORDER_THIN);

//设置右边框颜色;

style.setRightBorderColor(HSSFColor.BLACK.index);

//设置顶边框;

style.setBorderTop(HSSFCellStyle.BORDER_THIN);

//设置顶边框颜色;

style.setTopBorderColor(HSSFColor.BLACK.index);

//在样式用应用设置的字体;

style.setFont(font);

//设置自动换行;

style.setWrapText(false);

//设置水平对齐的样式为居中对齐;

style.setAlignment(HSSFCellStyle.ALIGN_CENTER);

//设置垂直对齐的样式为居中对齐;

style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);

return style;

}

}

用javapio导入excle长数字文本怎么弄

用javapio导入excle长数字文本怎么弄

poi或jxl都可以生成excel,给你说下jxl怎么生成的吧,详细的api你可以从网上下载。

//添加带有formatting的Number对象

jxl.write.NumberFormat nf = new jxl.write.NumberFormat("#.##"); //设置数字格式

jxl.write.WritableCellFormat wcfN = new jxl.write.WritableCellFormat(nf); //设置表单格式

jxl.write.Number labelNF = new jxl.write.Number(1, 1, 3.1415926, wcfN); //格式化数值

ws.addCell(labelNF); //在表单中添加格式化的数字

java poi导出excel

用spire.xls.jar也可以导出excel, 代码更简单

import com.spire.xls.ExcelVersion;

import com.spire.xls.Workbook;

import com.spire.xls.Worksheet;

public class InsertArray {

  public static void main(String[] args) {

      //创建Workbook对象

      Workbook wb = new Workbook();

      //获取第一张工作表

      Worksheet sheet = wb.getWorksheets().get(0);

      //定义一维数据

      String[] oneDimensionalArray = new String[]{"苹果", "梨子", "葡萄", "香蕉"};

      //将数组从指定单个格开始写入工作表,true表示纵向写入,设置为false为横向写入

      sheet.insertArray(oneDimensionalArray, 1, 1, true);

      //定义二维数组

      String[][] twoDimensionalArray = new String[][]{

              {"姓名", "年龄", "性别", "学历"},

              {"小张", "25", "男", "本科"},

              {"小王", "24", "男", "本科"},

              {"小李", "26", "女", "本科"}

      };

      //从指定单元格开始写入二维数组到工作表

      sheet.insertArray(twoDimensionalArray, 1, 3);

      //保存文档

      wb.saveToFile("InsertArrays.xlsx", ExcelVersion.Version2016);

  }

}

javapioxls的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于、javapioxls的信息别忘了在本站进行查找喔。

The End

发布于:2022-11-22,除非注明,否则均为首码项目网原创文章,转载请注明出处。