PNG JPG BMP TIFF ODP
Aspose.Slides  for Java

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

Phân tích cú pháp tài liệu ODP 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 ODP bằng Java

Để phân tích cú pháp tệp ODP, 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 ODP 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 ODP 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 ODP - Java

//Load ODP file
Presentation odpPresentation = new Presentation("demo.odp");
try{
    //Get an Array of TextFrameEx objects from the first slide
    ITextFrame[] textFramesSlideOne = SlideUtil.getAllTextBoxes(odpPresentation.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 (odpPresentation != null) odpPresentation.dispose();
}
//Similarly extarcting text from the Whole Presentation
//Use getAllTextFrames(odpPresentation, 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 ODP Parser Live Demos

    Extract text and images from ODP 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 ODP files.
      It will be parsed instantly.

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

    Files with ODP extension represent presentation file format used by OpenOffice.org in the OASISOpen standard. 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. ODP files can be opened by applications that conform to the OpenDocument format (such as OpenOffice or StarOffice).

    Đọ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.

    PPT (Microsoft PowerPoint 97-2003)
    PPTX (Định dạng bản trình bày XML mở)