《JAVA》编程中怎么用SXSSFWorkbook对已存在的excel操作进行写数据操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《JAVA》编程中怎么用SXSSFWorkbook对已存在的excel操作进行写数据操作相关的知识,希望对你有一定的参考价值。
想用POI来读取和写入excel2007文件,但是网上找了半天只找到对已经存在的excel2003格式文件的内容追加的方式,但是我要写的数据很多,只能用SXSSFWorkbook格式而不是HSSFWorkbook,此外,我是想对本地已存在的excel进行增加数据,而不是像网上那样创建一个新的excel文件,请问这个该怎么办?
网上找了半天只找到对已经存在的excel2003格式文件的内容追加的方式,如下:
import java.io.FileInputStream;
import java.io.FileOutputStream;
import org.apache.poi.hssf.model.Workbook;
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.poifs.filesystem.POIFSFileSystem;
public class Test11
public static void main(String[] args) throws Exception
FileInputStream fs=new FileInputStream("d://test.xls");
POIFSFileSystem ps=new POIFSFileSystem(fs);
HSSFWorkbook wb=new HSSFWorkbook(ps);
HSSFSheet sheet=wb.getSheetAt(0);
HSSFRow row=sheet.getRow(0);
System.out.println(sheet.getLastRowNum()+" "+row.getLastCellNum());
FileOutputStream out=new FileOutputStream("d://workbook.xls");
row=sheet.createRow((short)(sheet.getLastRowNum()+1));
row.createCell(17).setCellValue(9.2);
row.createCell(20).setCellValue(9);
out.flush();
wb.write(out);
out.close();
System.out.println(row.getPhysicalNumberOfCells()+" "+row.getLastCellNum());
但是对于excel2007的操作需要用XSSF,我照葫芦画瓢,发现不行呢。
像 HSSFWorkbook wb=new HSSFWorkbook(ps); 直接换成是 XSSFWorkbook wb=new XSSFWorkbook(ps); 提示是错误的。
XSSFWorkbook wb=new XSSFWorkbook(参数);中的参数是InputStream ,你直接XSSFWorkbook wb=new XSSFWorkbook(fs);就可以了。
第一步查询数据--这一步读者自行实现自己的数据查询 List<PointInfo> points = null;
points = this.dao.getAllCollect(userId);
final Map<String, List<PointInfo>> pointMap = new HashMap<>();
for (final PointInfo pointInfo : points)
final String pt = pointInfo.getPointType(); if (pointMap.containsKey(pt)) final List<PointInfo> subList = pointMap.get(pt);
subList.add(pointInfo);
else final List<PointInfo> subList = new ArrayList<>();subList.add(pointInfo);
pointMap.put(pt, subList
第二步:生成工作簿
final SXSSFWorkbook wb = new SXSSFWorkbook();
// 对每一种类型生成一个sheet
for (final Map.Entry<String, List<PointInfo>> entry : pointMap.entrySet())
final List<PointInfo> pts = entry.getValue();
// 获取每种类型的名字--作为sheet显示名称--如果不需要分sheet可忽略
String typeName = "";
if (this.dao.getTypeByTypeCode(pts.get(0).getPointType()) != null)
typeName = this.dao.getTypeByTypeCode(pts.get(0).getPointType()).getPointTypeName();
final Sheet sheet = wb.createSheet(typeName);
//生成用于插入图片的容器--这个方法返回的类型在老api中不同
final Drawing patriarch = sheet.createDrawingPatriarch();
// 为sheet1生成第一行,用于放表头信息
final Row row = sheet.createRow(0);
// 第一行的第一个单元格的值
Cell cell = row.createCell((short) 0);
cell.setCellValue("详细地址");
cell = row.createCell((short) 1);
cell.setCellValue("经度");
cell = row.createCell((short) 2);
cell.setCellValue("纬度");
cell = row.createCell((short) 3);
for (int i = 0; i < pts.size(); i++)
final Row each = sheet.createRow(i + 1);
Cell infoCell = each.createCell((short) 0);
infoCell.setCellValue(pts.get(i).getAddrDetail());
infoCell = each.createCell((short) 1);
infoCell.setCellValue(pts.get(i).getX());
infoCell = each.createCell((short) 2);
infoCell.setCellValue(pts.get(i).getY());
infoCell = each.createCell((short) 3);
//查询获取图片路径信息--该步读者自定义
PointPic pic = this.dao.getPicInfoByPointId(pts.get(i).getId());
try
if (pic != null)
for (int k = 0; k < 6; k++) //因为有六张图片,所以循环6次
final short colNum = (short) (4+k);
infoCell = each.createCell(colNum);
BufferedImage img = null;
switch (k)
case 0:
if (!StringUtils.isEmpty(pic.getPicOneAddr()))
File imgFile = new File(pic.getPicOneAddr());
img = ImageIO.read(imgFile);
imgFile = null;
break;
case 1:
if (!StringUtils.isEmpty(pic.getPicTwoAddr()))
File imgFile = new File(pic.getPicTwoAddr());
img = ImageIO.read(imgFile);
imgFile = null;
break;
case 2:
if (!StringUtils.isEmpty(pic.getPicThreeAddr()))
File imgFile = new File(pic.getPicThreeAddr());
img = ImageIO.read(imgFile);
imgFile = null;
break;
case 3:
if (!StringUtils.isEmpty(pic.getPicFourAddr()))
File imgFile = new File(pic.getPicFourAddr());
img = ImageIO.read(imgFile);
imgFile = null;
break;
case 4:
if (!StringUtils.isEmpty(pic.getPicFiveAddr()))
File imgFile = new File(pic.getPicFiveAddr());
img = ImageIO.read(imgFile);
imgFile = null;
break;
case 5:
if (!StringUtils.isEmpty(pic.getPicSixAddr()))
File imgFile = new File(pic.getPicSixAddr());
img = ImageIO.read(imgFile);
imgFile = null;
break;
ByteArrayOutputStream byteArrayOut = new ByteArrayOutputStream();
ImageIO.write(img, "jpg", byteArrayOut);
img = null;
//设置每张图片插入位置
final XSSFClientAnchor anchor = new XSSFClientAnchor(0, 0, 0, 0, colNum,
i + 1, (short) (colNum + 1), i + 2);//参数为图片插入在表格的坐标,可以自行查看api研究参数
anchor.setAnchorType(0);
// 插入图片
patriarch.createPicture(anchor, wb.addPicture(
byteArrayOut.toByteArray(), HSSFWorkbook.PICTURE_TYPE_JPEG));
byteArrayOut.close();
byteArrayOut = null;
pic = null;
catch (final Exception e)
e.printStackTrace();
final ByteArrayOutputStream os = new ByteArrayOutputStream();
try
wb.write(os);
catch (final IOException e)
e.printStackTrace();
final byte[] content = os.toByteArray();
final String url = Var.BASE_URL+ File.separator + "output.xls";//读者自定义路径
final File file = new File(url);// Excel文件生成后存储的位置。
OutputStream fos = null;
try
fos = new FileOutputStream(file);
fos.write(content);
os.close();
fos.close();
catch (final Exception e)
e.printStackTrace();
return url;//文件保存成功
参考技术A FileInputStream fileInputStream = new FileInputStream(file);XSSFWorkbook xssfWorkbook = new XSSFWorkbook(fileInputStream);
SXSSFWorkbook sxssfWorkbook = new SXSSFWorkbook(xssfWorkbook);
java编程中的assert 怎么用啊?
java编程中的assert 怎么用啊?通俗一点儿的解释,举个栗子最好了!!!
public class AssertTest
public static void main(String[] args)
int i = 0;
for(;i<5;i++)
System.out.println(i);
--i;
assert i==5;//此处的写法有什么意义呢?
assert关键字语法很简单,有两种用法:
1、assert <boolean表达式>
如果<boolean表达式>为true,则程序继续执行。如果为false,则程序抛出AssertionError,并终止执行。
2、assert <boolean表达式> : <错误信息表达式>
如果<boolean表达式>为true,则程序继续执行。如果为false,则程序抛出java.lang.AssertionError,并输入<错误信息表达式>。
也就是你需要在执行java命令时加入参数-ea,如
java -ea xxx
现在来看,个人是不推荐使用的。 参考技术A assert翻译过来就是断点, 就是在一个程序里面加一个断点,可以测试自己的项目 ,下面给你看一个简单的列子:
public class AssertExampleOne
public AssertExampleOne()
public static void main(String args[])
int x=10;
System.out.println("Testing Assertion that x==100");
assert x==100:"Out assertion failed!";
System.out.println("Test passed!");
在执行时未加 -ea 时输出为
Testing Assertion that x==100
Test passed
jre忽略了断言的就代码,而使用了该参数就会输出为
Testing Assertion that x==100
Exception in thread "main" java.lang.AssertionError: Out assertion failed!
at AssertExampleOne.main(AssertExampleOne.java:6)
断言的副作用
由于程序员的问题,断言的使用可能会带来副作用 ,例如:
boolean isEnable=false;
//...
assert isEnable=true; 参考技术B 第 1 种使用方法:
public static void main(String[] args)
boolean isOk = 1>2;
assert isOk;
System.out.println("程序正常");
因为 1>2 显然是错误的,所以执行结果抛出异常:Exception in thread "main" java.lang.AssertionError
如果把 1>2 改为 1<2 则程序能顺利执行,打印 “程序正常”
第 2 种使用方法:
public static void main(String[] args)
boolean isOk = 1>2;
try
assert isOk : "程序错误";
System.out.println("程序正常");
catch(AssertionError err)
System.out.println(err.getMessage());
assert 后面跟个冒号表达式。如果冒号前为 true,则冒号后面的被忽略。
如果冒号前为false,则抛出AssertionError ,错误信息内容为冒号后面的内容,上面程序执行结果就是打印:"程序错误" 参考技术C 没用过,工作中应该用不到这个字段吧,我反正是从来没有用到过的。
以上是关于《JAVA》编程中怎么用SXSSFWorkbook对已存在的excel操作进行写数据操作的主要内容,如果未能解决你的问题,请参考以下文章
java excel poi 中的SXSSFWorkbook wb = new SXSSFWorkbook(workbook, 1000);是啥意思?
无法在java中读取使用SXSSFWorkbook编写的文件
Java基础——HSSFworkbook,XSSFworkbook,SXSSFworkbook区别简述
Java-API-POI-Excel:SXSSFWorkbook Documentation