admin管理员组

文章数量:1542018

Spire.office for Java--需要破解版,请谷歌搜索
An independent Office library that allows developers to create, edit, convert, print Word,Excel,PowerPoint and PDF documents, and to generate and scan 1D&2D barcodes within Java applications.

 

Spire.Doc for Java
A professional Java Word API that enables developers to create, convert, manipulate and print Word documents without using Microsoft Office.

 

Spire.Xls for Java
A professional Java Excel API that enables developers to create, manage, manipulate, convert and print Excel worksheets without using Microsoft Office or Microsoft Excel.

 

Spire.PDF for Java
A PDF Java API that enables developers to read, write, convert and print PDF documents in Java applications without using Adobe Acrobat.

 

Spire.Presentation for Java
A PowerPoint API allows developers to create, read, edit, convert and print PowerPoint files within Java applications ( J2SE and J2EE ).

 

Spire.Barcode for Java
A barcode Java API that is designed for developers to generate, read and scan 1D & 2D barcodes within Java applications.

Spire.Office for Java 7.8.0. In this version, Spire.XLS for Java supports custom sorting and supports converting Excel containing chart types defined by Excel 2016 to PDF and images; Spire.Presentation for Java supports converting all slides from a PowerPoint document to an SVG file and deleting macros from PPTM files; Spire.Doc for Java enhances the conversion from Word and HTML to PDF; Spire.PDF for Java enhances the conversion from PDF to images, Tiff, OFD, and PDF/A3A as well as Tiff to PDF. Additionally, many known bugs have been fixed successfully. More details are listed below.
Here is a list of changes made in this release
Spire.XLS for Java
CategoryIDDescription
New featureSPIREXLS-3704Supports custom sorting.
wb.getDataSorter().getSortColumns().add(0, new String[]
{"12345","Argentina", "Area", "Chile", "Capital","USA","Ecuador","Guyana"}
); wb.getDataSorter().sort(wb.getWorksheets().get(0).getRange().get("A1:A8"));
New feature-Supports converting Excel containing chart types defined by Excel 2016 to PDF and images.
BugSPIREXLS-3524Fixes the issue that caused incorrect chart content after converting Excel to PDF.
BugSPIREXLS-3862Fixes the issue that caused incorrect line color after converting Excel to Html.
BugSPIREXLS-3863Fixes the issue that the chart became blurry after converting Excel to Html.
BugSPIREXLS-3975Fixes the issue that caused incorrect data after importing data from datatable in sheet
BugSPIREXLS-3976Fixes the issue that the line format was changed after adding TrendLines to chart.
BugSPIREXLS-3979Fixes the issue that the content in X axis was incorrect after converting chart to image.
Spire.Presentation for Java
CategoryIDDescription
New featureSPIREPPT-1983Supports deleting macros from PPTM files.
New featureSPIREPPT-1995Provides the method isSlideSizeAutoFit() to fit content to the slide size when cloning slides. Note: currently only 4:3->16:9 is supported.
Presentation presentation1 =new Presentation();
presentation1.loadFromFile(inputFile_1);
Presentation presentation2 =new Presentation();
presentation2.loadFromFile(inputFile_2);
presentation1.isSlideSizeAutoFit(true);
ILayout layout = presentation1.getSlides().get(0).getLayout();
presentation1.getSlides().append(presentation2.getSlides().get(0),layout);
presentation1.saveToFile(outputFile, FileFormat.PPTX_2013);
New featureSPIREPPT-1996Supports converting all slides from a PowerPoint document to an SVG file.
byte[] bytes=ppt.saveToOneSVG();
try(java.io.FileOutputStream stream = new java.io.FileOutputStream(outputFile)){
    stream.write(bytes);
}
BugSPIREPPT-1982Fixes the issue that the application threw exceptions "NullPointerException" and “Unsupported Image Type” when converting PPT to images.
BugSPIREPPT-1990Fixes the issue that the size of text font was reduced after splitting the PowerPoint document according to the slides.
BugSPIREPPT-1991Fixes the issue that when setShowLoop(true) method has been set to loop the slideshow, the Microsoft PowerPoint would stop after playing the first slide.
BugSPIREPPT-1994Optimizes the speed of loading PowerPoint files.
BugSPIREPPT-2000Adjusts the names of slide.SaveToFile(), SaveToSVG() methods to saveToFile() and saveToSVG().
BugSPIREPPT-2004Fixes the issue that the application threw exception “Java heap space" when converting PowerPoint to images.
Spire.Doc for Java
CategoryIDDescription
BugSPIREDOC-4372Fixes the issue that the application hung when converting Word to PDF.
Bug SPIREDOC-6957Fixes the issue that the application threw the "IndexOutOfBoundException" when converting HTML to PDF.
BugSPIREDOC-7123Fixes the issue that the password was lost after loading and saving a password-protected Word document.
BugSPIREDOC-7524Fixes the issue that caused incorrect number list after converting Word to HTML.
BugSPIREDOC-7620Fixes the issue that caused incorrect pagination after converting Word to PDF.
SPIREDOC-7628
SPIREDOC-7732
SPIREDOC-7736
SPIREDOC-7737
SPIREDOC-7750
SPIREDOC-7751
SPIREDOC-7752
SPIREDOC-7907
SPIREDOC-8005
SPIREDOC-8009
SPIREDOC-8060
SPIREDOC-8062
BugSPIREDOC-7658Fixes the issue that caused incorrect text wrapping after converting Word to PDF.
SPIREDOC-8043
BugSPIREDOC-7713Fixes the issue that the contents were overlapped after converting Word to PDF.
SPIREDOC-7741
SPIREDOC-7831
SPIREDOC-7999
BugSPIREDOC-7739Fixes the issue that the location of line was incorrect after converting Word to PDF.
BugSPIREDOC-7748Fixes the issue that the location of number was incorrect after converting Word to PDF.
BugSPIREDOC-7758Fixes the issue that caused incorrect content format after converting Word to PDF.
BugSPIREDOC-7820Fixes the issue that the table text was not centered after converting Word to PDF.
BugSPIREDOC-7851Fixes the issue that setting the docPicture.setWidthScale and docPicture.setHeightScale properties didn't take effect.
BugSPIREDOC-7913Fixes the issue that caused incomplete content and blurry table after converting Word to PDF.
BugSPIREDOC-7912Fixes the issue that caused incorrect table format after converting HTML to image.
BugSPIREDOC-7914Fixes the issue that the decimal point was covered after converting Word to PDF.
SPIREDOC-7926
SPIREDOC-7932
SPIREDOC-7942
BugSPIREDOC-7955Fixes the issue that the content was blank after converting Word to PDF.
BugSPIREDOC-7966Fixes the issue that the date repeated after converting Word to PDF.
BugSPIREDOC-7981Fixes the issue that the border of table was lost after converting Word to PDF.
BugSPIREDOC-8011Fixes the issue that the content was blank after adding LatexMathCode.
BugSPIREDOC-8012Fixes the issue that caused incorrect content after adding LatexMathCode.
BugSPIREDOC-8039Fixes the issue that caused incorrect order of cell content after converting Word to PDF.
BugSPIREDOC-8040Fixes the issue that caused incorrect wrapping of cell content after converting Word to PDF.
BugSPIREDOC-8065Fixes the issue that the table contents were messed up after converting Word to PDF.
BugSPIREDOC-8078Fixes the issue that the application threw the "IndexOutOfBoundException" when removing table cell.
BugSPIREDOC-8087Fixes the issue that caused incorrect text wrapping after converting Word to PDF.
BugSPIREDOC-8093Fixes the issue that the application threw the "Unknow char: \" when appending HTML to Word.
BugSPIREDOC-8104Fixes the issue that the text was garbled after converting Word PDF with new engine.
BugSPIREDOC-8155Fixes the issue that the application threw the Unknown char: ' when loading Word document.
BugSPIREDOC-8172Fixes the issue that caused incorrect data of field after converting Word to PDF.
BugSPIREDOC-8201Fixes the issue that the decimal point was lost after converting Word to PDF.
Spire.PDF for Java
CategoryIDDescription
BugSPIREPDF-5248Fixes the issue that some characters were incorrect after converting PDF to PDF/A3A.
BugSPIREPDF-5312Fixes the issue that the application threw exception "Parameter is invalid" when converting PDF to Tiff.
BugSPIREPDF-5322Fixes the issue that the location of text was incorrect after converting PDF to image.
BugSPIREPDF-5327Fixed the issue that after converting PDF to OFD, the content was lost when opened with Dotpoly OFD reader.
BugSPIREPDF-5332Fixes the issue that the text displayed incorrectly after converting PDF to image.
BugSPIREPDF-5337Fixes the issue that the application threw exception "No have this TiffTag" when converting Tiff to PDF.
BugSPIREPDF-5350Fixes the issue that the content was lost after converting PDF to OFD.
BugSPIREPDF-5362Fixes the issue that the application threw exception "NullPointerException" when loading PDF.

本文标签: officespireJava