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 =…