百度搜索轻易得到之破解版Spire.Office for Java is a combination of Enterprise-Level Office Java APIs offered by E-iceblue. It includes Spire.Doc for Java, Spire.XLS for Java, Spire.Presentation for Java, Spire.PDF for Java and Spire.Barcode for Java.

Spire.Office for Java 7.9.9 is released
We are excited to announce the release of Spire.Office for Java 7.9.9. In this version, Spire.Doc for Java supports word level comparison when comparing Word documents; Spire.Presentation supports adding MathML equations and selecting the print range in the Print dialog box. Besides, some known issues are successfully fixed in this version. More details are listed below.
Here is a list of changes made in this release
Spire.Doc for Java
Category ID Description
New feature SPIREDOC-7817 Supports word level comparison when comparing Word documents.
Document doc1 = new Document();
doc1.loadFromFile(folder + "a.docx");
Document doc2 = new Document();
doc2.loadFromFile(folder + "b.docx");
CompareOptions options = new CompareOptions();
options.setLevel(ComparisonLevel.Word);
doc1.compare(doc2, "E-iceblue",options);
doc1.saveToFile(result, FileFormat.Docx);
Bug SPIREDOC-7268 Fixes the issue that setting table row height to auto type did not work when saving to DOC format documents.
Bug SPIREDOC- 7835 Fixes the issue that TOC contents were not aligned after updating TOC(table of contents).
Bug SPIREDOC-8018 Fixes the issue that the table layout was incorrect when converting Word to PDF.
Bug SPIREDOC-8038 Fixes the issue that the total page count was displayed incorrectly when converting Word to PDF.
Bug SPIREDOC-8092 Fixes the issue that the embedded document could not be opened when clicking on the image displayed by the OLE object after adding an OLE object using OleLinkType.Link.
Bug SPIREDOC-8095 Fixes the issue that the page numbers were not displayed correctly after updating TOC(table of contents).
Bug SPIREDOC-8098 Fixes the issue that setting case insensitivity did not work when finding text via regex.
Bug SPIREDOC-8162 Fixes the issue that the update directory program throws NullPointerException.
Bug SPIREDOC-8190 Fixes the issue that the text wrapping was incorrect when converting Word to PDF
Bug SPIREDOC-8199 Fixes the issue that the rotation angle of the watermark was incorrect when converting Word to PDF.
Bug SPIREDOC-8200 Fixes the issue that the program threw an error (Argument width[0] or height[0] cannot be less or equal to zero) when converting Word to PDF.
Bug SPIREDOC-8231 Fixes the issue that The table did not span pages correctly when converting Word to PDF.
Bug SPIREDOC-8273 Fixes the issue that the program threw an exception (Error reading WMF metafile) when loading document.
Bug SPIREDOC-8282 Fixes the issue that the content layout was incorrect when converting Word to PDF
Bug SPIREDOC-8285 Fixes the issue that the file format of docm was recognized as docx.
Bug SPIREDOC-8303 Fixes the issue that the result of detecting whether a file of docm was encrypted was incorrect.
Bug SPIREDOC-8369 Fixes the issue that the program threw an exception (GC overhead limit exceeded) when converting Word to PDF.
Spire.Presentation for Java
Category ID Description
New feature SPIREPPT-2044 Supports adding MathML equations.
Presentation ppt = new Presentation();
String mathMLCode="<mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\" xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\">" + "<mml:msup><mml:mrow><mml:mi>x</mml:mi></mml:mrow><mml:mrow><mml:mn>2</mml:mn></mml:mrow></mml:msup><mml:mo>+</mml:mo><mml:msqrt><mml:msup><mml:mrow><mml:mi>x</mml:mi></mml:mrow><mml:mrow><mml:mn>2</mml:mn></mml:mrow></mml:msup><mml:mo>+</mml:mo><mml:mn>1</mml:mn></mml:msqrt><mml:mo>+</mml:mo><mml:mn>1</mml:mn></mml:math>";
IAutoShape shape=ppt.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE, new Rectangle2D.Float(30,100,400,30));
shape.getTextFrame().getParagraphs().clear();
ParagraphEx tp=shape.getTextFrame().getParagraphs().addParagraphFromMathMLCode(mathMLCode);
ppt.saveToFile(outputFile, FileFormat.PDF);
ppt.dispose();
New feature SPIREPPT-2054 Supports selecting the print range in the Print dialog box.
Presentation ppt = new Presentation();
ppt.loadFromFile("C:\\1.pptx");
PrinterJob printerJob=PrinterJob.getPrinterJob();
printerJob.setPrintable(ppt);
printerJob.printDialog();
printerJob.print();
ppt.dispose();
Bug SPIREPPT-2036 Fixes the issue that the content was cropped when converting PowerPoint to PDF with A4 size.
Bug SPIREPPT-2053 Fixes the issue that the gradient disappeared when converting PowerPoint to SVG.
Bug SPIREPPT-2055 Fixes the issue that the application threw NullPointerException when merging PowerPoint files.
Bug SPIREPPT-2056 Fixes the issue that the application threw ArrayIndexOutOfBoundsException when loading a PowerPoint file.
Bug SPIREPPT-2055 Fixes the issue that the application threw NullPointerException when splitting a PowerPoint file.

Spire.Office for Java 7.9.9 ---2022-09-30相关推荐

  1. 信息学奥赛中的STL(标准模板库)--2022.09.30

    1.信息学奥赛一本通 第5版 第8章 C++实用技巧与模版库(6节) 第一节  排序算法 第二节 运算符重载 第三节  字符串(string) 第四节 FIFO队列和优先队列 第五节  动态数组 第六 ...

  2. Spire.Office NET 7.7.6 重大重量 Spire.Office 7.7.X JAVA

    破解版网上很多:Spire.Office for Java is a combination  of Java Office APIs that contains Spire.Doc for Java ...

  3. java使用spire.office.free给office添加水印

        Spire.Office for Java 是一套企业级的涵盖 E-iceblue 所有 Java组件的集合,它包括以下产品的最新版本:Spire.Doc for Java, Spire.XL ...

  4. Spire.Office for .NET/JAVA 和谐版

    Spire.Office for .NET是 E-iceblue 提供的企业级 Office .NET API 的组合.Q180846090它包括Spire.Doc.Spire.XLS.Spire.S ...

  5. 使用spire.office在Word中生成表格

    提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 使用spire.office在Word中生成表格 前言 一.动态生成表格 二.使用步骤 1.引入库 2.实例 总结 前言 遇到一个需要 ...

  6. C#读写Excel的4种方案(OpenXml、NPOI、EPPlus、Spire.Office)

    在项目中需要使用C#读写Excel,每天定时将数据输出到Excel表格中.在参考了很多的方案后,找到了4个常用的方案,并提供了一些小Demo.更多功能和示例可以参考官方文档. 1.Microsoft. ...

  7. spire.doc 让java操作word文档更简单优雅

    Spire.Doc for Java 是一款专业的 Java Word 组件,开发人员使用它可以轻松地将 Word 文档创建.读取.编辑.转换和打印等功能集成到自己的 Java 应用程序中.作为一款完 ...

  8. 无需安装Microsoft Office和Adobe实现办公文档操作,Spire.Office免费资源清单一览

    作为一个独立的 Office 组件,Free Spire.Office 的运行环境无需安装 Microsoft Office 及其他第三方软件.基于安全性.稳定性.可扩展性.效率及价格方面的考虑,Sp ...

  9. Spire.XLS for Java 12.11.8 Crack

    Spire.XLS for Java是一个专业的 Java Excel API,使开发人员无需使用 Microsoft Office 或 Microsoft Excel即可创建.管理.操作.转换和打印 ...

最新文章

  1. Pytorch和Tensorflow,谁会笑到最后?
  2. 为什么数据库连接池不采用 IO 多路复用?
  3. 2021年的第一盆冷水:有人说别太把图神经网络当回事儿
  4. Java—FileOperator
  5. div+css 和 xhtml+css是一回事么?
  6. C语言编译报错:incompatible pointer type [-Wincompatible-pointer-types](传参类型不匹配)
  7. linux怎样服务,如何在linux添加服务
  8. python getopt.getopt_python 参数格式化getopt
  9. 操作 实例 / dom
  10. 《Windows核心编程》の窗口过程的使用
  11. 已知先序和中序求后序
  12. mysql 数据块_数据库中数据块是什么
  13. 防止各大网盘下载限速解决方案--idman
  14. linux禁止访问国外ip,Shell脚本实现防止国外ip访问服务器
  15. 《刘润·5分钟商学院》学习总结01
  16. 计算机网络管理员试题实操,网络管理员试题(实操).doc
  17. 简单无聊的Minecraft主世界与地狱坐标转换器
  18. 判断是否为 retina屏幕
  19. Scikit-learn的六大功能
  20. SAP save_text 解决导入物料主数据长文本丢失空格

热门文章

  1. linux kernel ebtables接口
  2. 针对付费的百度文库用冰点_9个针对开发人员的付费技术写作程序
  3. C#图书管理系统之用户登陆界面实现(一)
  4. VOC分析的实际流程
  5. 【BZOJ3930】【CQOI2015】选数
  6. 如何缓解安防PPP模式的忧愁
  7. 联想如何打开计算机配置,联想电脑如何进入bios设置
  8. IEEE802系列协议
  9. 漫谈国际EPC项目的设备监造、工厂检验与采购合同质量管控
  10. [AHK]调用TradeX.dll获取五档行情