spire.doc for java 3.3.0 现已发布。该版本支持设置对角线表格边框和装订线。除此之外,一些在 word 转 svg/pdf,操作和保存文档时出现的问题也得以成功解决。详情见下文。
新功能:
- 支持了设置对角线表格边框。
document doc = new document();
section section = doc.addsection();
table otable = section.addtable(true);
section.addparagraph();
otable.resetcells(10, 3);
otable.gettableformat().getpaddings().settop(10);
otable.gettableformat().getpaddings().setbottom(10);
otable.gettableformat().sethorizontalalignment(rowalignment.center);
otable.getlastcell().getcellformat().getborders().getdiagonalup().setbordertype(borderstyle.single);
otable.getfirstrow().getcells().get(0).getcellformat().getborders().getdiagonaldown().setbordertype(borderstyle.double);
doc.savetofile(outputfile);
section section = document.getsections().get(0);
section.getpagesetup().setgutter(100f);
问题修复:
- 修复了当一个项目中同时使用 spire.office.jar 和 crimson.jar 时程序抛出异常 java.lang.abstractmethoderror。
- 修复了更新内容目录后,目录内容不正确的问题。
- 修复了 word 转 svg 程序抛异常 stackoverflowerror。
- 修复了插入的 pdf ole 对象不能打开。
- 修复了 word 转 pdf 内容不正确。
- 修复了 word 转 pdf 抛异常 java.lang.nullpointerexception。
- 修复了 word 转 pdf 抛异常 java.lang.stackoverflowerror。
- 修复了加载文档抛异常 java.lang.illegalstateexception。
- 修复了移除分页符保存文档失败的问题。
获取spire.doc for java 3.3.0,请点击: