Spire.XLS for Java 16.3.2 enhances Excel to PDF conversion stability
2026-03-26 03:47:04
We’re pleased to announce the release of Spire.XLS for Java 16.3.2. This version enhances the stability of Excel-to-PDF conversion. It also fixes several issues, including a problem where the application would hang when loading a document. More details are listed below. Here is a list of changes made in this release Category ID Description Bug Fix SPIREXLS-6109 Fixed an issue where some borders were missing when converting Excel to PDF on a Linux server. Bug Fix SPIREXLS-6119 Fixed an issue where the application would hang when loading a document. Click the link below to download Spire.XLS for Java 16.3.2: https://www.e-iceblue.com/Download/xls-for-java.html
Spire.XLS for Java 16.2.6 supports checking password protection via file stream
2026-02-26 10:20:06
We're pleased to announce the release of Spire.XLS for Java 16.2.6. This version supports using Workbook.isPasswordProtected(InputStream stream) to determine password protection by passing a file stream. Meanwhile, some issues that occurred when copying cells, calculating formulas, and converting Excel to PDF have also been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New Feature SPIREXLS-6079 Supports Workbook.isPasswordProtected(stream) to determine password protection via file stream. Bug Fix SPIREXLS-6070 Fixes the issue where the chart count was incorrect after copying cells. Bug Fix SPIREXLS-6072 Deprecated the old conditional format adding…
Spire.XLS for Java 16.1.3 supports inserting, retrieving, and updating equations
2026-01-27 08:34:03
We're pleased to announce the release of Spire.XLS for Java 16.1.3. This version supports inserting/ retrieving/ updating equations, and also supports the F.INV and T.INV.2T functions. Furthermore, several issues that occurred when processing and converting Excel files (e.g., HTML to Excel, Excel to PDF) have been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5237 Added support for inserting, retrieving, and updating equations. // Insert an equation sheet.getEquations().addEquation(11, 0, 100, 100, "x_{1}^{2}"); // Retrieve an equation String mathML = sheet.getEquations().get(0).exportMathML(); String latex = sheet.getEquations().get(0).exportLaTeX(); // Update…
Spire.XLS for Java 15.12.15 optimizes the logic for handling long text in headers
2025-12-24 09:44:29
We’re pleased to announce the release of Spire.XLS for Java 15.12.15. This version optimizes the logic for handling long text exceeding 253 characters in Excel headers, and fixes several known bugs as well. More details are as follows. Here is a list of changes made in this release Category ID Description Adjustment SPIREXLS-5909 Optimized the logic for handling text exceeding 253 characters in headers. When the limit is exceeded, an error message is now displayed: "The text string for header is too long. Bug SPIREXLS-6033 Fixed the issue where loading an Excel document caused a StringIndexOutOfBoundsException. Bug SPIREXLS-6039 SPIREXLS-6040 Fixed…
Spire.XLS for Java 15.11.3 supports converting between Excel and Markdown formats
2025-11-27 08:38:29
We're pleased to announce the release of Spire.XLS for Java 15.11.3. This version supports converting between Excel and Markdown formats, setting text box paragraphs to right-to-left. Besides, several issues that occurred when converting Excel to PDF/HTML and merging files have been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5882 Added support for converting between Excel and Markdown formats. //Markdown to Excel Workbook workbook=new Workbook(); workbook.loadFromMarkdown(inputFile); workbook.saveToFile("out.xlsx", FileFormat.Version2013); //Excel to Markdown Workbook workbook=new Workbook(); workbook.loadFromFile("in.xlsx"); workbook.saveToFile("out.md", FileFormat.Markdown); workbook.dispose(); New feature SPIREXLS-5943 Added support for setting text…
Spire.XLS for Java 15.10.5 optimizes memory consumption when loading Excel documents
2025-10-27 09:24:35
We're pleased to announce the release of Spire.XLS for Java 15.10.5. This version optimizes memory consumption when loading Excel documents. Meanwhile, several issues related to retrieving checkboxes, loading large Excel files, worksheet formatting, and file saving have been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description Optimization SPIREXLS-5921 Optimized memory consumption when loading Excel documents. Bug SPIREXLS-5185 Fixed the issue where retrieving checkboxes failed. Bug SPIREXLS-5913 Fixed the issue where the application hung when loading Excel files under a configured JVM maximum memory limit. Bug SPIREXLS-5930 Fixed the…
Spire.XLS for Java 15.9.1 enhances the conversion from Excel to HTML
2025-09-11 09:52:51
We're pleased to announce the release of Spire.XLS for Java 15.9.1. This version enhances the conversion from Excel to HTML. Besides, some known bugs are fixed in the new version, such as the issue where an "IllegalStateException" exception was thrown when saving an XLSB file. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREXLS-5927 Fixed an issue causing extra content and missing blank lines when converting Excel to HTML. Bug SPIREXLS-5942 Fixed an issue where an "IllegalStateException" exception was thrown when saving an XLSB file. Bug SPIREXLS-5944 Fixed an…
Spire.XLS for Java 15.8.3 supports converting Excel to HTML while preserving comments
2025-08-22 10:18:07
We're pleased to announce the release of Spire.XLS for Java 15.8.3. This version adds support for converting Excel files to HTML while preserving comments. Additionally, it includes several bug fixes related to Excel-to-PDF conversion, column widths, and HTML conversion. See the details below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5879 Supports converting Excel to HTML while preserving comments. HTMLOptions options = new HTMLOptions(); options.isSaveComment(true); Bug SPIREXLS-5820 Fixes incorrect checkboxes when converting Excel to PDF. Bug SPIREXLS-5887 Fixes the issue where non-compliant defaultColWidthPt attribute was added when saving Excel documents according to…