Online Edit
Quick Start
Run Spire.Cloud Online Editor in Your Web Application
Getting Started with Spire.Cloud Online Editor
Spire.Cloud Word Editor
How to Add a Watermark to Word
How to Insert and Customize Footnotes
How to Insert a WordArt
How to Insert a Picture in Word
How to Insert a Link in Word
How to Add Comments in Word
How to Add a Column to Word
Spire.Cloud Excel Editor
How to Create a Table in Excel
How to Insert a Chart in Excel
Web API
.NET
Spire.Cloud.Word
Replace Text in Word Using Spire.Cloud.Word
Add, Remove or Edit Paragraphs in Word Using Spire.Cloud.Word
Convert Word to PDF or XPS Using Spire.Cloud.Word
Encrypt Word Documents Using Spire.Cloud.Word
Add Text and Image Watermarks to Word using Spire.Cloud.Word
Remove Watermarks from Word using Spire.Cloud.Word
Set Background Color and Image for Word using Spire.Cloud
Spire.Cloud.Excel
Freeze or Unfreeze Excel Columns and Rows Using Spire.Cloud.Excel
Add or Delete Excel Comments Using Spire.Cloud.Excel
Convert Excel to PDF or XPS Using Spire.Cloud.Excel
Set or Remove Excel Document Properties Using Spire.Cloud.Excel
Encrypt or Decrypt Excel Documents Using Spire.Cloud.Excel
Merge and Unmerge Excel Cells using Spire.Cloud.Excel
Protect or Unprotect Excel Worksheet using Spire.Cloud.Excel
Replace Text in Excel in C# using Spire.Cloud.Excel
Spire.Cloud.PowerPoint
Add a Table to PowerPoint Using Spire.Cloud.PowerPoint
Add an Image to PowerPoint Using Spire.Cloud.PowerPoint
Set or Remove PowerPoint Document Properties Using Spire.Cloud.PowerPoint
Convert PowerPoint to PDF or Images Using Spire.Cloud.PowerPoint
Add Background Color or Image to Slides Using Spire.Cloud.PowerPoint
Add, Update and Remove Speaker Notes in PowerPoint using Spire.Cloud.PowerPoint
Replace Text in PowerPoint using Spire.Cloud.PowerPoint
Spire.Cloud.PDF
Merge or Split PDF Documents Using Spire.Cloud.PDF
Add and Delete PDF Document Properties using Spire.Cloud.PDF
Add or Extract Images in PDF Using Spire.Cloud.PDF
Install Spire.Cloud Web API via NuGet
How to Use Spire.Cloud Web API in .NET
Java
Spire.Cloud.Word
Create a Blank Word Document using Spire.Cloud.Word
Merge Word documents in Java using Spire.Cloud.Word
Encrypt Word Documents Using Spire.Cloud.Word
Add Table to Word Document using Spire.Cloud.Word
Remove Watermark in Word Document using Spire.Cloud.Word
Replace Text in a Word document Using Spire.Cloud.Word
Convert Word to HTML in Java using Spire.Cloud.Word
Add Digital Signature to Word using Spire.Cloud.Word
Add and Delete Shapes in Word Using Spire.Cloud.Word
Add and Delete Images in Word Using Spire.Cloud.Word
Add, Get and Delete Custom Document Properties in Word using Spire.Cloud.Word
Add/Replace/Delete Paragraphs in Word Document Using Spire.Cloud.Word
Spire.Cloud.Excel
Freeze or Unfreeze Excel Rows and Columns using Spire.Cloud.Excel
Merge Excel Cells and Set Cell Format using Spire.Cloud.Excel
Spire.Cloud.Excel Encrypt/Decrypt Excel Documents
Rename Excel Worksheet Using Spire.Cloud.Excel
Add or Delete Comments in Excel Worksheets
Set and Delete Excel Document Properties Using Spire.Cloud.Excel
Spire.Cloud.PowerPoint
Add Image to a PowerPoint Document using Spire.Cloud.PowerPoint
Create a table in PowerPoint using Spire.Cloud.PowerPoint
Convert PPT(X) to PDF using Spire.Cloud.PowerPoint
Convert PPT(X) to PNG using Spire.Cloud.PowerPoint
Set and Delete PowerPoint Document Properties Using Spire.Cloud.PowerPoint
Replace Text in PowerPoint in Java using Spire.Cloud.PowerPoint
Spire.Cloud.PDF
Add/ Delete PDF Page Using Spire.Cloud.PDF
Convert PDF to Image using Spire.Cloud.PDF
Draw Shapes in PDF Using Spire.Cloud.PDF
Convert PDF to Word Document Using Spire.Cloud.PDF
Add, Update and Delete PDF Document Properties using Spire.Cloud.PDF
Add an Image to PDF Document Using Spire.Cloud.PDF
Merge and Split PDF Documents Using Spire.Cloud.PDF
Add Lists to PDF using Spire.Cloud.PDF
Add, Update, Get and Delete Bookmarks in PDF
Install Spire.Cloud Web API from Maven Repository
How to Use Spire.Cloud Web API in Java
API Documentation
Spire.Cloud.Word API
Spire.Cloud.Excel API
Spire.Cloud.PowerPoint API
Spire.Cloud.PDF API

Add Lists to PDF using Spire.Cloud.PDF

This article demonstrates how to add various types of lists to PDF using the PdfListApi interface provided by Spire.Cloud.PDF.

import spire.cloud.pdf.sdk.ApiException;
import spire.cloud.pdf.sdk.Configuration;
import spire.cloud.pdf.sdk.api.PdfListApi;
import spire.cloud.pdf.sdk.model.Font;
import spire.cloud.pdf.sdk.model.List;
import java.util.ArrayList;

public class AddList {
    static String appId = "APP ID";
    static String appKey = "APP Key";
    static String baseUrl= "https://api.cloudxdocs.com";
    //Create a Configuration instance based on your AppID and AppKey
    static Configuration configuration = new Configuration(appId, appKey, baseUrl);
    //Create a PdfListApi instance
    static PdfListApi pdfListApi = new PdfListApi(configuration);

    public static void main(String[]args) throws ApiException {
        //Specify the input PDF document
        String name = "AddList.pdf";
        //Specify the file path of the output document
        String outPath = "/PdfList/AddList.pdf";
        //Specify the number of the page that you want to add lists to
        int pageNumber = 1;
        //Specify the password used to open the document, and it's "null" if nothing
        String password = null;
        //Specify the folder storing the input document, and it's "null" if nothing
        String folder = "input";
        //Use the 2G storage provided by E-iceblue, and it's "null" by default
        String storage = null;

        //Create an ArrayList of list type to add the lists created below
        ArrayList<List> lists = new  ArrayList<List>();

        //Create a Font
        Font font = new Font();
        font.setFontType(Font.FontTypeEnum.STANDARD);
        font.setFontFamily("Helvetica");
        font.setFontSize(12f);
        font.setFontStyle(Font.FontStyleEnum.BOLD);

        //Create an ArrayList of String type for the text value of lists created below
        ArrayList<String> strList1 = new ArrayList<String>();
        strList1.add("123");
        strList1.add("456");
        strList1.add("789");
        strList1.add("000");

        //Create a sorted list with UPPERROMAN number style
        spire.cloud.pdf.sdk.model.List list1 = new  spire.cloud.pdf.sdk.model.List();
        list1.setX(50f);
        list1.setY(50f);
        list1.setWidth(null);
        list1.setHeight(null);
        list1.setType(List.TypeEnum.SORTED);
        list1.setText(strList1);
        list1.setIndent(0f);
        list1.setTextIndent(0f);
        list1.setFont(font);
        list1.setNumberStyle(List.NumberStyleEnum.UPPERROMAN);
        list1.setStartNumber(null);

        //Create a sorted list with UPPERLATIN number style
        spire.cloud.pdf.sdk.model.List list2 = new  spire.cloud.pdf.sdk.model.List();
        list2.setX(50f);
        list2.setY(200f);
        list2.setWidth(100f);
        list2.setHeight(100f);
        list2.setType(List.TypeEnum.SORTED);
        list2.setText(strList1);
        list2.setIndent(5f);
        list2.setTextIndent(5f);
        list2.setFont(font);
        list2.setNumberStyle(List.NumberStyleEnum.UPPERLATIN);
        list2.setStartNumber(3);

        //Create a sorted list with LOWERROMAN number style
        spire.cloud.pdf.sdk.model.List list3 = new  spire.cloud.pdf.sdk.model.List();
        list3.setX(50f);
        list3.setY(300f);
        list3.setWidth(100f);
        list3.setHeight(100f);
        list3.setType(List.TypeEnum.SORTED);
        list3.setText(strList1);
        list3.setIndent(5f);
        list3.setTextIndent(5f);
        list3.setFont(font);
        list3.setNumberStyle(List.NumberStyleEnum.LOWERROMAN);
        list3.setStartNumber(3);

        //Create a sorted list with NUMERIC number style
        spire.cloud.pdf.sdk.model.List list4 = new  spire.cloud.pdf.sdk.model.List();
        list4.setX(50f);
        list4.setY(400f);
        list4.setWidth(100f);
        list4.setHeight(100f);
        list4.setType(List.TypeEnum.SORTED);
        list4.setText(strList1);
        list4.setIndent(5f);
        list4.setTextIndent(5f);
        list4.setFont(font);
        list4.setNumberStyle(List.NumberStyleEnum.NUMERIC);
        list4.setStartNumber(3);

        //Create a sorted list with no number style
        spire.cloud.pdf.sdk.model.List list5 = new  spire.cloud.pdf.sdk.model.List();
        list5.setX(50f);
        list5.setY(520f);
        list5.setWidth(100f);
        list5.setHeight(100f);
        list5.setType(List.TypeEnum.SORTED);
        list5.setText(strList1);
        list5.setIndent(5f);
        list5.setTextIndent(5f);
        list5.setFont(font);
        list5.setNumberStyle(List.NumberStyleEnum.NONE);
        list5.setStartNumber(3);

        //Create an ArrayList of String type for the text value of lists created below
        ArrayList<String> strList2 = new ArrayList<String>();
        strList2.add("147");
        strList2.add("258");
        strList2.add("369");
        strList2.add("000");

        //Create an unsorted list with no number style
        spire.cloud.pdf.sdk.model.List list6 = new  spire.cloud.pdf.sdk.model.List();
        list6.setX(350f);
        list6.setY(50f);
        list6.setWidth(null);
        list6.setHeight(null);
        list6.setType(List.TypeEnum.UNSORTED);
        list6.setText(strList2);
        list6.setIndent(0f);
        list6.setTextIndent(0f);
        list6.setFont(font);
        list6.setNumberStyle(null);
        list6.setStartNumber(null);

        //Create an unsorted list with  LOWERLATIN number style
        spire.cloud.pdf.sdk.model.List list7 = new  spire.cloud.pdf.sdk.model.List();
        list7.setX(350f);
        list7.setY(200f);
        list7.setWidth(100f);
        list7.setHeight(100f);
        list7.setType(List.TypeEnum.UNSORTED);
        list7.setText(strList2);
        list7.setIndent(5f);
        list7.setTextIndent(5f);
        list7.setFont(font);
        list7.setNumberStyle(List.NumberStyleEnum.LOWERLATIN);
        list7.setStartNumber(3);

        //Add the lists to the ArrayList
        lists.add(list1);
        lists.add(list2);
        lists.add(list3);
        lists.add(list4);
        lists.add(list5);
        lists.add(list6);
        lists.add(list7);

        //Call addList method to add the ArrayList to PDF and save to a speicified path
        pdfListApi.addList(name, outPath, pageNumber, lists, folder, storage, password);
    }
}

Output:

Add Lists to PDF using Spire.Cloud.PDF