Spire.Office for Java 8.9.5/Spire.Office 8.9.2 .NET

Spire.Office for .NET is a combination of Enterprise-Level Office .NET API offered by E-iceblue. It includes Spire.Doc, Spire.XLS, Spire.Spreadsheet, Spire.Presentation, Spire.PDF, Spire.DataExport, Spire.OfficeViewer, Spire.PDFViewer, Spire.DocViewer, Spire.Barcode and Spire.Email. Spire.Office contains the most up-to-date versions of the above .NET API.

With Spire.Office for .NET, developers can create a wide range of applications. It enables developers to open, create, modify, convert, print, View MS Word, Excel, PowerPoint and PDF documents. Furthermore, it allows users to export data to popular files such as MS Word/Excel/RTF/Access, PowerPoint, PDF, XPS, HTML, XML, Text, CSV, DBF, Clipboard, SYLK, PostScript, PCL, etc.

Spire.Office for .NET can be linked into any type of a 32-bit or 64-bit .NET application including ASP.NET, Web Services and WinForms for .NET Framework version 2.0 to 4.5. Spire.Office also supports to work on .NET Core, .NET 5.0, .NET 6.0, Microsoft Azure, Mono Android and Xamarin.iOS.

美丽分界线/美丽分界线_____________________________

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.

Developers can use Spire.Office for Java to perform a wide range of office document operations in Java applications, such as opening, creating, modifying, converting and printing Word, Excel, PowerPoint and PDF documents, generating and scanning 1D&2D barcodes.

As an independent Office Java library, Spire.Office for Java doesn't need Microsoft Office to be installed on either the development or target systems.

|---------------|---------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Java |||
| Spire.XLS for Java |||
| Category | ID | Description |
| New feature | SPIREXLS-4731 | Optimizes the conversion time from Excel to PDF. |
| New feature | SPIREXLS-4852 | Adds the function of finding cells based on regular expressions. |
| Bug | SPIREXLS-3760 | Fixes the issue that the program threw "sun.security.x509.X509CertImpl" exception when using spire.xls.jar under IBM websphere. |
| Bug | SPIREXLS-4873 | Fixes the issue that the program threw "Input string was not in the correct format" exception when loading documents. |
| Spire.PDF for Java |||
| Category | ID | Description |
| Bug | SPIREPDF-6241 | Fixes the issue that the characters overlapped when converting OFD to PDF. |
|   |||
| .NET |||
| Spire.Doc | | |
| Category | ID | Description |
| New feature | SPIREDOC-9057 | Supports converting math formulas to OfficeMathMLCode. |
| New feature | SPIREDOC-9057 | Document doc = new Document(); |
| New feature | SPIREDOC-9057 | doc.LoadFromFile("1.docx"); |
| New feature | SPIREDOC-9057 | StringBuilder stringBuilder = new StringBuilder(); |
| New feature | SPIREDOC-9057 |   |
| New feature | SPIREDOC-9057 | foreach (Section section in doc.Sections) |
| New feature | SPIREDOC-9057 | { |
| New feature | SPIREDOC-9057 | foreach (Paragraph par in section.Body.Paragraphs) |
| New feature | SPIREDOC-9057 | { |
| New feature | SPIREDOC-9057 | foreach (DocumentObject obj in par.ChildObjects) |
| New feature | SPIREDOC-9057 | { |
| New feature | SPIREDOC-9057 | OfficeMath omath = obj as OfficeMath; |
| New feature | SPIREDOC-9057 | if (omath == null) continue; |
| New feature | SPIREDOC-9057 | string mathml = omath.ToOfficeMathMLCode(); |
| New feature | SPIREDOC-9057 | stringBuilder.Append(mathml); |
| New feature | SPIREDOC-9057 | stringBuilder.Append("\r\n"); |
| New feature | SPIREDOC-9057 | } |
| New feature | SPIREDOC-9057 | } |
| New feature | SPIREDOC-9057 | } |
| New feature | SPIREDOC-9057 | File.WriteAllText("1.txt", stringBuilder.ToString()); |
| New feature | SPIREDOC-9057 | doc.Close(); |
| New feature | SPIREDOC-9710 | Supports adding hyperlinks to images in mail merge. |
| New feature | SPIREDOC-9710 | Document doc = new Document(); |
| New feature | SPIREDOC-9710 | doc.LoadFromFile("Test.docx"); |
| New feature | SPIREDOC-9710 | var fieldNames = new string[] { "MyImage" }; |
| New feature | SPIREDOC-9710 | var fieldValues = new string[] { "logo.png" }; |
| New feature | SPIREDOC-9710 |   |
| New feature | SPIREDOC-9710 | doc.MailMerge.MergeImageField += new MergeImageFieldEventHandler(MailMerge_MergeImageField); |
| New feature | SPIREDOC-9710 |   |
| New feature | SPIREDOC-9710 | doc.MailMerge.Execute(fieldNames, fieldValues); |
| New feature | SPIREDOC-9710 |   |
| New feature | SPIREDOC-9710 | doc.SaveToFile("result.docx", FileFormat.Docx); |
| New feature | SPIREDOC-9710 | } |
| New feature | SPIREDOC-9710 |   |
| New feature | SPIREDOC-9710 | void MailMerge_MergeImageField(object sender, MergeImageFieldEventArgs field) |
| New feature | SPIREDOC-9710 | { |
| New feature | SPIREDOC-9710 | string filePath = field.FieldValue as string; |
| New feature | SPIREDOC-9710 | if (!string.IsNullOrEmpty(filePath)) |
| New feature | SPIREDOC-9710 | { |
| New feature | SPIREDOC-9710 | field.Image = Image.FromFile(filePath); |
| New feature | SPIREDOC-9710 | field.ImageLink = "https://www.e-iceblue.com/"; |
| New feature | SPIREDOC-9710 | } |
| New feature | SPIREDOC-9710 |   |
| New feature | SPIREDOC-9710 | } |
| New feature | SPIREDOC-9778 | Improves the efficiency of document storage. |
| Bug | SPIREDOC-9769 | Fixes the issue that the content layout of the result documents generated in .NET 7.0 projects was incorrect. |
| Bug | SPIREDOC-6013 | Fixes the issue that loading Word documents threw a System.InvalidOperationException exception. |
| Bug | SPIREDOC-8541 | Fixes the issue that converting Word to PDF caused inconsistent pagination. |
| Bug | SPIREDOC-8587 | Fixes the issue that converting Word to PDF threw a System.NullReferenceException exception. |
| Bug | SPIREDOC-9197 | Fixes the issue that exporting Docx files from Sparrow and converting them to HTML files failed. |
| Bug | SPIREDOC-9213 | Fixes the issue that page number fields could not be automatically updated after insertion. |
| Bug | SPIREDOC-9253 | Fixes the issue that list characters were displayed incorrectly when converting HTML to Doc. |
| Bug | SPIREDOC-9310 | Fixes the issue that line break tags were ignored when converting HTML to Doc. |
| Bug | SPIREDOC-9400 | Fixes the issue that logos were lost when converting Docx to PDF. |
| Bug | SPIREDOC-9627 | Fixes the issue that loading RTF documents threw a System.NullReferenceException exception. |
| Bug | SPIREDOC-9640 | Fixes the issue that the symbol "~" in LaTeX formulas was parsed incorrectly. |
| Bug | SPIREDOC-9641 | Fixes the issue that TOC was split across multiple pages when converting Word to PDF. |
| Bug | SPIREDOC-9684 | Fixes the issue that images were blurry when converting Docx to HTML. |
| Bug | SPIREDOC-9712 | Fixes the issue that extra text appeared when converting Word to PDF. |
| Bug | SPIREDOC-9755 | Fixes the issue that content was inconsistent after loading and saving a document. |
| Bug | SPIREDOC-9761 | Fixes the issue that the program hung when inserting HTML strings. |
| Spire.PDF |||
| Category | ID | Description |
| New feature | SPIREPDF-6199 | Add a new method to determine if a document is encrypted without loading the document. |
| New feature | SPIREPDF-6199 | bool value = PdfDocument.IsPasswordProtected("1.pdf"); |
| New feature | SPIREPDF-6223 | Supports setting margins when printing. |
| New feature | SPIREPDF-6223 | pdf.PrintSettings.SelectMultiPageLayout(2,2,false,Spire.Pdf.Print.PdfMultiPageOrder.Horizontal, marginValue) |
| Bug | SPIREPDF-4391 | Fixed the issue that some cells were split into two columns when converting PDF to Excel. |
| Bug | SPIREPDF-6023 | Fix the issue that setting the WholeWord property when searching for text caused the failure of highlighting text. |
| Bug | SPIREPDF-6138 | Fix the issue that text was lost when converting PDF to Word. |
| Bug | SPIREPDF-6194 | Fix the issue that the XML file failed to open in the result file after adding XML attachments to PDF files. |
| Bug | SPIREPDF-6198 | Fix the issue that the program threw an exception "System.ArgumentOutOfRangeException" when loading a compressed document. |
| Bug | SPIREPDF-6201 | Fix the issue that it failed to open the compressed document with PDF reader. |
| Bug | SPIREPDF-6203 | Fixed the issue that PDF converted to Word with permission password set (content copy and page extraction not allowed) did not request permission password. |
| Bug | SPIREPDF-6204 | Fixed the issue that characters were displayed incorrectly after converting PDF to POSTSCRIPT. |
| Bug | SPIREPDF-6205 | Fixed the issue that stamps were lost after converting OFD to PDF and images. |
| Bug | SPIREPDF-6213 | Fix the issue that the content was garbled after converting PDF to PDFA. |
| Bug | SPIREPDF-6227 | Fix the issue that the program threw an exception "System.IndexOutOfRangeException" when drawing a table. |
| Bug | SPIREPDF-1752 | Fixed the issue that opening the result file in Adobe failed after creating an overlay. |
| Bug | SPIREPDF-5146 | Fixed the issue that the watermark was changed after decrypting a PDF file. |
| Bug | SPIREPDF-5865 | Fixed the issue that finding cross-line text in a PDF file failed. |
| Bug | SPIREPDF-6114 | Fixed the issue that finding cross-line text in a PDF file failed. |
| Bug | SPIREPDF-6024 | Fixed the issue that setting FitToPage and FitToHTML properties under PdfHtmlLayoutFormat didn't take effect. |
| Bug | SPIREPDF-6140 | Fixed the issue that printing the same PDF file multiple times resulted in increased file size and printing time. |
| Bug | SPIREPDF-6150 | Fixed the issue that the content orientation was incorrect when printing double-sided. |
| Bug | SPIREPDF-6193 | Fixed the issue that the application threw a "System.NullReferenceException" exception when adding attachments to a PDF file. |
| Spire.XLS |||
| Category | ID | Description |
| New feature | SPIREXLS-2146 | Supports customizing the paper size without scaling the content during printing. |
| New feature | SPIREXLS-2146 | sheet.PageSetup.SetCustomPaperSize(224, (float)25.4); |
| New feature | SPIREXLS-2146 | sheet.PageSetup.Orientation = PageOrientationType.Portrait; |
| New feature | SPIREXLS-4640 | Supports adding Signature Line. |
| New feature | SPIREXLS-4640 | sheet.Range["A1"].AddSignatureLine("e-iceblue","E-iceblue","123@123.com", "description" ,false, true); |
| New feature | SPIREXLS-4740 | Supports getting shapes in sheets. |
| New feature | SPIREXLS-4740 | Spire.Xls.Core.IShapes shapes = sheet.Shapes; |
| Bug | SPIREXLS-1782 | Fixes the issue that the program threw an exception when creating HIPERVINCULO formulas in a Spanish environment. |
| Bug | SPIREXLS-4824 | Fixes the issue that the program threw a "NullReferenceException" when loading an Excel document created by the new version of WPS. |
| Bug | SPIREXLS-4830 | Fixes the issue that the program threw a "NullReferenceException" when loading an Excel document created by the new version of WPS. |
| Bug | SPIREXLS-4842 | Fixes the issue that the slicer was lost after saving Excel. |
| Bug | SPIREXLS-4850 | Fixes the issue that after splitting Excel documents, the generated file prompted the message that the content has error when opening in Microsoft Excel. |
| Bug | SPIREXLS-4851 | Fixes the issue that the program threw "NullReferenceException" when merging multiple Excel documents. |
| Bug | SPIREXLS-4853 | Fixes the issue that the program threw "NullReferenceException" when loading Excel documents. |
| Spire.Presentation |||
| Category | ID | Description |
| New feature | SPIREPPT-2311 | Supports highlighting replaced text. |
| New feature | SPIREPPT-2311 | Presentation ppt = new Presentation(); |
| New feature | SPIREPPT-2311 | ppt.LoadFromFile("input.pptx"); |
| New feature | SPIREPPT-2311 | DefaultTextRangeProperties format = new DefaultTextRangeProperties(); |
| New feature | SPIREPPT-2311 | format.IsBold = TriState.True; |
| New feature | SPIREPPT-2311 | format.Fill.FillType = Spire.Presentation.Drawing.FillFormatType.Solid; |
| New feature | SPIREPPT-2311 | format.Fill.SolidColor.Color = Color.Red; |
| New feature | SPIREPPT-2311 | format.FontHeight = 25; |
| New feature | SPIREPPT-2311 | ppt.ReplaceAndFormatText("Yuma", "AAAA", format); |
| New feature | SPIREPPT-2311 | ppt.SaveToFile("output.pptx",FileFormat.Pptx2016); |
| Bug | SPIREPPT-2286 | Fixes the issue that the think-cell objects were lost when splitting a PowerPoint document containing think-cell objects. |
| Bug | SPIREPPT-2292 | Fixes the issue that copying a PowerPoint slide containing modern annotation content failed. |
| Bug | SPIREPPT-2315 | Fixes the issue that the program threw System.IndexOutOfRangeException when getting points in the teardrop shape. |
| Bug | SPIREPPT-2317 | Fixes the issue that the color did not take effect when converting to PDF after changing the hyperlink color. |
| Spire.DocViewer |||
| Category | ID | Description |
| Bug | SPIREDOCVIEWER-107 | Fixed the issue that the image location was incorrect when viewing a Word document. |
| Spire.PDFViewer |||
| Category | ID | Description |
| Bug | SPIREPDFVIEWER-575 | Fixed the issue that the application threw a "System.ArgumentNullException" exception when loading a PDF file. |
| Bug | SPIREPDFVIEWER -576 | Fixed the issue that the application threw a "System.OutOfMemoryException" exception when loading a PDF file. |

相关推荐
阿里嘎多学长3 小时前
2026-04-30 GitHub 热点项目精选
开发语言·程序员·github·代码托管
abcnull5 小时前
用javaparser做精准测试
java·ast·静态代码分析·精准测试·javaparser
叶小鸡5 小时前
Java 篇-项目实战-苍穹外卖-笔记汇总
java·开发语言·笔记
AI人工智能+电脑小能手5 小时前
【大白话说Java面试题】【Java基础篇】第22题:HashMap 和 HashSet 有哪些区别
java·开发语言·哈希算法·散列表·hash
juniperhan5 小时前
Flink 系列第21篇:Flink SQL 函数与 UDF 全解读:类型推导、开发要点与 Module 扩展
java·大数据·数据仓库·分布式·sql·flink
ID_180079054735 小时前
Python 实现亚马逊商品详情 API 数据准确性校验(极简可用 + JSON 参考)
java·python·json
c++之路6 小时前
C++23概述
java·c++·c++23
时空系6 小时前
第10篇:继承扩展——面向对象编程进阶 python中文编程
开发语言·python·ai编程
专注API从业者7 小时前
Open Claw 京东商品监控选品实战:一键抓取、实时监控、高效选品
java·服务器·数据库
CHANG_THE_WORLD7 小时前
python 批量终止进程exe
开发语言·python