PNG JPG BMP TIFF PPTX
Aspose.Slides  for Java

Phân tích cú pháp các định dạng PPTX trong Java

Phân tích cú pháp tài liệu PPTX nguyên bản và hiệu suất cao bằng cách sử dụng Aspose.Slides phía máy chủ cho các API Java, mà không cần sử dụng bất kỳ phần mềm nào như Microsoft hoặc Adobe PDF.

Cách phân tích cú pháp tệp PPTX bằng Java

Để phân tích cú pháp tệp PPTX, chúng tôi sẽ sử dụng

Aspose.Slides dành cho Java

API là một API phân tích cú pháp giàu tính năng, mạnh mẽ và dễ sử dụng cho nền tảng Java. Bạn có thể tải xuống phiên bản mới nhất của nó trực tiếp từ

Maven

và cài đặt nó trong dự án dựa trên Maven của bạn bằng cách thêm các cấu hình sau vào pom.xml.

Kho


<repository>
    <id>AsposeJavaAPI</id>
    <name>Aspose Java API</name>
    <url>https://releases.aspose.com/java/repo/</url>
</repository>

Sự phụ thuộc


<dependency>
    <groupId>com.aspose</groupId>
    <artifactId>aspose-slides</artifactId>
    <version>version of aspose-slides API</version>
    <classifier>jdk17</classifier>
</dependency>

Các bước để phân tích cú pháp tệp PPTX trong Java

Có thể thực hiện phân tích cú pháp tài liệu cơ bản với API Aspose.Slides for Java chỉ với vài dòng mã.

  1. Tải tệp PPTX bằng cách cài đặt lớp Trình bày.

  2. Nhận khung văn bản trang chiếu đầu tiên.

  3. Lặp qua từng phần đoạn văn.

  4. Nhận đầu ra cần thiết như văn bản, phông chữ, v.v.

yêu cầu hệ thống

Aspose.Slides cho Java hỗ trợ trên tất cả các nền tảng và Hệ điều hành chính. Vui lòng đảm bảo rằng bạn có các điều kiện tiên quyết sau.

  • Microsoft Windows hoặc hệ điều hành tương thích với Môi trường thời gian chạy Java cho Ứng dụng JSP / JSF và Ứng dụng máy tính để bàn.
  • Nhận phiên bản mới nhất của Aspose.Slides cho Java trực tiếp từ Maven .
 

Phân tích cú pháp tệp PPTX - Java

//Load PPTX file
Presentation pptxPresentation = new Presentation("demo.pptx");
try{
    //Get an Array of TextFrameEx objects from the first slide
    ITextFrame[] textFramesSlideOne = SlideUtil.getAllTextBoxes(pptxPresentation.getSlides().get_Item(0));

    //Loop through the Array of TextFrames
    for (int i = 0; i < textFramesSlideOne.length; i++){
        //Loop through paragraphs in current TextFrame
        for (IParagraph para : textFramesSlideOne[0].getParagraphs()){
            //Loop through portions in the current Paragraph
            for (IPortion port : para.getPortions()){
                //Display text in the current portion
                System.out.print(port.getText());

                //Display font height of the text
                System.out.print(port.getPortionFormat().getFontHeight());

                //Display font name of the text
                System.out.print(port.getPortionFormat().getLatinFont().getFontName());
            }
        }
    }
} finally {
    if (pptxPresentation != null) pptxPresentation.dispose();
}
//Similarly extarcting text from the Whole Presentation
//Use getAllTextFrames(pptxPresentation, true) method and Iterate through Array   

    
 
  • Giới thiệu về Aspose.Slides cho Java API

    API Aspose.Slides có thể được sử dụng để đọc, viết, thao tác và chuyển đổi tài liệu Microsoft PowerPoint sang PDF, XPS, HTML, TIFF, ODP và nhiều định dạng khác. Người ta có thể tạo các tệp mới từ đầu và lưu chúng ở các định dạng được hỗ trợ có liên quan. Aspose.Slides là một API độc lập để tạo, phân tích cú pháp hoặc thao tác với các bản trình bày, trang trình bày và các phần tử và nó không phụ thuộc vào bất kỳ phần mềm nào như Microsoft hoặc OpenOffice.

    Online PPTX Parser Live Demos

    Extract text and images from PPTX documents right now by visiting our Live Demos website . The live demo has the following benefits

      No need to download Aspose API.
      No need to write any code.
      Just upload your PPTX files.
      It will be parsed instantly.

    PPTX Những gì là PPTX Tập Tin Định Dạng

    Files with PPTX extension are presentation files created with popular Microsoft PowerPoint application. Unlike the previous version of presentation file format PPT which was binary, the PPTX format is based on the Microsoft PowerPoint open XML presentation file format. A presentation file is a collection of slides where each slide can comprise of text, images, formatting, animations, and other media. These slides are presented to audience in the form of slideshows with custom presentation settings.

    Đọc Thêm

    Các tài liệu phân tích cú pháp được hỗ trợ khác

    Sử dụng Java, người ta có thể dễ dàng phân tích cú pháp các định dạng khác bao gồm.

    ODP (Định dạng bản trình bày OpenDocument)
    PPT (Microsoft PowerPoint 97-2003)