如何获取Java中Microsoft Word文档的页数?

问题描述 投票:2回答:5

对于基于服务器的j2ee应用程序,我需要从Word文档中检索页数。任何想法有效吗?

java java-ee ms-word
5个回答
3
投票

如果文档是现代Word 2007格式,则可以通过OOXML使用基于XML的直接操作。到目前为止,这是一个更好的长期解决方案,尽管我意识到整个组织在一夜之间进行更改可能并不现实。

如果它们是较旧的Word格式,尽管you're not supposed to do that on the server,您可能仍受服务器端Word / Excel / Powerpoint / Outlook可编程对象模型的困扰。


3
投票

关于Office Open XML支持,应该支持Java-POI的最新Beta。


1
投票

以前没有使用过,但是您可以尝试Apache POI。看起来它具有WordCount函数。


0
投票

//打开Word文档

Document doc = new Document("C:\\Temp\\file.doc"); 

//获取页数

int pageCount = doc.getPageCount();

0
投票

要读取MS Office文件的页数,可以使用aspose库(aspose字,aspose-单元格,aspose-slides)。

实施例:

Excel中:Woorkbook的可打印版本的页数:

   import com.aspose.cells.*;
   public int getPageCount(String filePath) throws Exception {
        Workbook book = new Workbook(filePath);
        ImageOrPrintOptions imageOrPrintOptions = new ImageOrPrintOptions();
//        Default       0   Prints all pages.
//        IgnoreBlank   1   Don't print the pages which the cells are blank.
//        IgnoreStyle   2   Don't print the pages which cells only contain styles.
        imageOrPrintOptions.setPrintingPage(PrintingPageType.IGNORE_STYLE);

        int pageCount = 0;
        for (int i = 0; i < book.getWorksheets().getCount(); i++) {
            Worksheet sheet = book.getWorksheets().get(i);

            PageSetup pageSetup = sheet.getPageSetup();

            pageSetup.setOrientation(PageOrientationType.PORTRAIT);

            pageSetup.setPaperSize(PaperSizeType.PAPER_LETTER);

            pageSetup.setTopMarginInch(1);
            pageSetup.setBottomMarginInch(1);
            pageSetup.setRightMarginInch(1);
            pageSetup.setLeftMarginInch(1);

            SheetRender sheetRender = new SheetRender(sheet, imageOrPrintOptions);

            int sheetPageCount = sheetRender.getPageCount();
            pageCount += sheetPageCount;
        }
        return pageCount;
    }

字:页数:

import com.aspose.words.Document;
public int getPageCount(String filePath) throws Exception {
     Document document = new Document(filePath);
     return document.getPageCount();
 }

PowerPoint:幻灯片数量:

import com.aspose.slides.*;
public int getPageCount(String filePath) throws Exception {
     Presentation presentation = new Presentation(filePath);
     return presentation.getSlides().toArray().length;
 }
© www.soinside.com 2019 - 2024. All rights reserved.