• Spire.Office for Java 8.8.3 Crack-姗姗来迟


    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.

    Spire.Doc for Java
    CategoryIDDescription
    New featureSPIREDOC-4902Support setting the position of the gutter line.
    Document doc = new Document();
    doc.loadFromFile(inputFile);
    Section sec = doc.getSections().get(0);
    sec.getPageSetup().isTopGutter(false);
    sec.getPageSetup().setGutter(100f);
    doc.saveToFile(outputFile, FileFormat.Docx);
    New featureSPIREDOC-7838Supports setting the spacing before/after paragraphs in line units.
    paragraph.getFormat().setBeforeSpacingLines(5f);
    paragraph.getFormat().setAfterSpacingLines(15f);
    BugSPIREDOC-4094Fixed the issue that the generated table of contents was incorrect.
    BugSPIREDOC-8956Fixed the issue that saving Docx documents failed when using IBM jdk1.6.
    BugSPIREDOC-9117Fixed the issue that fonts were not embedded when converting Word to OFD.
    SPIREDOC-9647
    BugSPIREDOC-9135Fixed the issue that the program threw a java.lang.IllegalStateException exception when converting Word to PDF.
    BugSPIREDOC-9193Fixed the issue that table content was lost when converting Word to PDF.
    BugSPIREDOC-9245Fixed the issue that bookmarks cannot be retrieved after inserting section breaks.
    BugSPIREDOC-9282Fixed the issue that extra directory tags appeared when converting Word to HTML.
    BugSPIREDOC-9331Fixed the issue that the program threw a java.lang.ClassCastException exception when converting Word to PDF.
    BugSPIREDOC-9401Fixed the issue that unordered list markers were missing when converting Word to PDF.
    BugSPIREDOC-9444Fixed the issue that the position of footers was incorrect when converting Word to PDF.
    BugSPIREDOC-9459Fixed the issue that the table of contents update failed.
    BugSPIREDOC-9464Fixed the issue that pagination was inconsistent when converting Word to PDF.
    BugSPIREDOC-9481Fixed the issue that header content was inconsistent when converting Word to PDF.
    BugSPIREDOC-9519Fixed the issue that the layout of punctuation was inconsistent when converting Word to PDF.
    BugSPIREDOC-9530Fixed the issue that field text style settings did not take effect after updating fields.
    BugSPIREDOC-9532Fixed the issue that retrieving document information from RTF documents failed.
    BugSPIREDOC-9574Fixed the issue that character spacing was inconsistent after loading and saving the document as a new document.
    BugSPIREDOC-9582Fixed the issue that artistic font styles were inconsistent after loading and saving the document as a new document.
    BugSPIREDOC-9584Fixed the issue that the position of content was inconsistent when converting Word to images.
    BugSPIREDOC-9613Fixed the issue that the content was garbled when converting Word to PDF.
    BugSPIREDOC-9584Fixed the issue that content positioning is inconsistent when converting Word to images.
    BugSPIREDOC-9626Fixed the issue that decimal percentages were lost in pie charts when converting Word to images.
    BugSPIREDOC-9628Fixed the issue that the program threw a java.lang.NullPointerException exception when loading Doc documents.
    BugSPIREDOC-9645Fixed the issue that editable areas were not editable after replacing images in Docx documents.
    BugSPIREDOC-9687Fixed the issue that selected checkboxes were missing when converting Word to PDF.
    BugSPIREDOC-9719Fixed the issue that the table formatting was incorrect when converting Word to PDF.
    Spire.Presentation for Java
    CategoryIDDescription
    New featureSPIREPPT-2293Supports selecting multiple slides and converting them into one SVG file.
    Presentation ppt = new Presentation();
    ppt.loadFromFile("input.pptx");
    //saveToOneSVG(int startSlide,int endSlide)
    //startSlide:Start slide index endSlide:End slide index
    byte[] bytes = ppt.saveToOneSVG(10,13);
    FileOutputStream fos = new FileOutputStream(new File("result.svg"));
    fos.write(bytes);
    fos.flush();
    fos.close();
    BugSPIREPPT-2269Fixes the issue that the content was cropped after saving a shape to an image.
    BugSPIREPPT-2283Fixes the issue that the text layout is messed up after converting PowerPoint to images.
    BugSPIREPPT-2295Fixes the issue that image placeholders could not be obtained after deleting all nodes in PICTURE_ORGANIZATION_CHART and then manually adding images.
    BugSPIREPPT-2301Fixes the issue that txt attachments cannot be opened after merging PowerPoint files.
    BugSPIREPPT-2312Fixes the issue that the animation styles and timing effects lost when loading a document and saving it to a new one.
    BugSPIREPPT-2316Fixes the issue that the program threw "java.lang.NullPointerException" exception when converting PPT to PDF.
    BugSPIREPPT-2319Fixes the issue that the program hung when converting PPT to PDF.
    Spire.XLS for Java
    CategoryIDDescription
    New featureSPIREXLS-4797Supports setting images for the first page header and footer.
    //Set image for first page header
    worksheet.getPageSetup().setFirstLeftHeaderImage(img_LFH);
    worksheet.getPageSetup().setCenterHeaderImage(img_LCH);
    worksheet.getPageSetup().setRightHeaderImage(img_LRH);
    //Set image for first page footer
    worksheet.getPageSetup().setLeftFooterImage(img_LFF);
    worksheet.getPageSetup().setCenterFooterImage(img_LCF);
    worksheet.getPageSetup().setRightHeaderImage(img_LRF);
    //Set image size
    worksheet.getPageSetup().setFirstLeftHeaderPictureHeight(50);
    worksheet.getPageSetup().setFirstLeftHeaderPictureWidth(50);
    worksheet.getPageSetup().setFirstCenterHeaderPictureHeight(50);
    worksheet.getPageSetup().setFirstCenterHeaderPictureWidth(50);
    worksheet.getPageSetup().setFirstRightHeaderPictureHeight(50);
    worksheet.getPageSetup().setFirstRightHeaderPictureWidth(50);
    New featureSPIREXLS-4831Supports getting the hyperlinks of pictures.
    ExcelPicture picture = sheet.getPictures().get(0);
    HyperLink link = picture.getHyperLink();
    String address = link.getAddress();
    BugSPIREXLS-4078Fixes the issue that Excel files saved in Tomcat had garbled formulas.
    BugSPIREXLS-4737Fixes the issue that opening files converted from Excel to PDF in Adobe resulted in an error.
    BugSPIREXLS-4770Fixes the issue that the content formatting of files converted from Excel to images was incorrect.
    BugSPIREXLS-4800Fixes the issue that setting the maximum row was not taking effect.
    BugSPIREXLS-4821Fixes the issue that the program threw "NullPointerException" when converting Excel to PDF.
    SPIREXLS-4840
    BugSPIREXLS-4822Fixes the issue that Excel files saved in WinServer2012 had garbled content in dropdown menus.
    BugSPIREXLS-4829Fixes the issue that the program threw "NullPointerException" when loading Excel files created with the new version of WPS.
    BugSPIREXLS-4837Fixes the issue that the program threw "NullPointerException" when loading Excel files.
    SPIREXLS-4839
    Spire.PDF for Java
    CategoryIDDescription
    New featureSPIREPDF-5843Adds a new interface for converting PDF to Word.
    SPIREPDF-5854PdfToWordConverter converter = new PdfToWordConverter(inputPath); 
     converter.saveToDocx(OutputPath);
     converter.dispose();
    New featureSPIREPDF-6115Adds a new interface for setting the "crop box".
    PdfDocument pdfDocument = new PdfDocument(); 
    pdfDocument.loadFromFile("input.pdf"); 
    PdfPageBase pdfPageBase = pdfDocument.getPages().get(0); 
    // setting the "crop box". 
    pdfPageBase.setCropBox(new Rectangle2D.Float(0,0,400,800));
    pdfDocument.saveToFile("output.pdf", FileFormat.PDF);
    New featureSPIREPDF-6167Adds a new interface for setting margins when printing documents.
    PdfDocument pdf = new PdfDocument();
    pdf.loadFromFile(inputFile);
    PrintSettings setting = pdf.getPrintSettings();
    pdf.getPrintSettings().setPaperMargins(30,30, 30, 30);
    setting.setPrinter("Microsoft XPS Document Writer");
    pdf.getPrintSettings().printToFile(outputFile);
    pdf.print();
    pdf.close();
    BugSPIREPDF-3556Fixes the issue that the chart axis was missing coordinates after converting PDF to Word.
    BugSPIREPDF-4980Fixes the issue that the content was incorrect after converting PDF to Word using flow layout.
    BugSPIREPDF-5047Fixes the issue that the font name with multiple suffixes after converting PDF to Word.
    BugSPIREPDF-5067Fixes the issue that the characters garbled when viewing converted PDF to Word with Office 365.
    BugSPIREPDF-6085Fixes the issue that the application threw exception: java.lang.NullPointerException when loading a PDF.
    BugSPIREPDF-6102Fixes the issue that viewing the converted PDFA document would prompt for missing fonts.
    BugSPIREPDF-6104Fixes the issue that the borders were cropped after converting PDF to SVG.
    BugSPIREPDF-6105Fixes the issue that the PdfDocument.setCustomFontsFolders() method was not effective when converting PDF to PDFA.
    BugSPIREPDF-6112Fixes the issue that the application threw excepttion:"PDF file structure is not valid" when loading a PDF.
    BugSPIREPDF-6147Fixes the issue that the bold font effect was unclear when converting PDF to OFD.
    SPIREPDF-6175
    BugSPIREPDF-6154Fixes the issue that the application threw exception: "For input string: 'e-'" when merging documents and converting to PDFA1A.
    BugSPIREPDF-6187Fixes the issue that the application threw NullPointerException when rotating a previously rotated document back to its original position.
    BugSPIREPDF-6104Fixes the issue that some borders of charts were cropped after converting PDF to SVG.
    BugSPIREPDF-6133Fixes the issue that the cell merge of the same column was incorrect after converting PDF to Excel.
    BugSPIREPDF-6209Fixes the issue that setting fonts for text boxes didn't take effect.

    Spire.Office for Java
    Java API to operate Word, PowerPoint & PDF
    documents, Generate and Scan barcodes.
    View Samples

    Spire.Doc for Java
    Java Word API to Create, Read,
    Write, Print and Convert Word Files
    View Samples

    Spire.XLS for Java
    Java XLS API to Create, Read, Write,
    Convert and Print PDF Files
    View Samples

    Spire.PDF for Java
    Java PDF API to Create, Read, Write,
    Convert and Print PDF Files
    View Samples

    Spire.Presentation for Java
    Create, Edit, Convert and Print
    PowerPoint Files in Java
    View Samples

    Spire.Barcode for Java
    Generate, Detect and Scan 1D & 2D
    Barcode Images in Java

     

  • 相关阅读:
    ES6知识总结
    Java零基础入门-如何代码模拟斗地主洗牌发牌动作(上)?
    html知识点总结
    C#里面的三种定时计时器:Timer
    爬虫都可以干什么?
    亚马逊鲲鹏系统批量注册功能可以让你快速拥有大量亚马逊买家号
    《七月集训》(第一天)——数组
    【Django】执行查询——查询JSONField
    Gin+Vue全栈开发实战
    java栈和自定义栈
  • 原文地址:https://blog.csdn.net/john_dwh/article/details/132606382