使用iText库生成PDF的分层书签

时间:2015-02-26 04:28:01

标签: java pdf itext

我有 ArrayList 中的数据,如下所示:

static ArrayList<DTONodeDetail> tree;
public static void main(String[] args) {
    // TODO Auto-generated method stub
    tree=new ArrayList<DTONodeDetail>();

     //first argument->NodeId
     //second->NodeName
     // third -> ParentNodeId

    tree.add(getDTO(1,"Root",0));
    tree.add(getDTO(239,"Node-1",1));
    tree.add(getDTO(242,"Node-2",239));
    tree.add(getDTO(243,"Node-3",239));
    tree.add(getDTO(244,"Node-4",242));
    tree.add(getDTO(245,"Node-5",243));
    displayTree(tree.get(0));       

}

public static DTONodeDetail getDTO(int nodeId,String nodeName,int parentID)
{
    DTONodeDetail dto=new DTONodeDetail();
    dto.setNodeId(nodeId);
    dto.setNodeDisplayName(nodeName);
    dto.setParentID(parentID);

    return dto;
}

我可以在tree structure中显示以上数据,如下所示:

Root
-----Node-1
------------Node-2
------------------Node-4
------------Node-3
------------------Node-5

我尝试使用类的itext库,但无法知道如何生成分层书签。

我的问题是我可以使用 itext java库在pdf中创建分层书签(如上所述)吗?

1 个答案:

答案 0 :(得分:1)

在PDF术语中,书签被称为轮廓。请查看我的书中的CreateOutline示例,了解如何创建大纲树,如PDF所示:outline_tree.pdf

enter image description here

我们从树的根开始:

PdfOutline root = writer.getRootOutline();

然后我们添加一个分支:

PdfOutline movieBookmark = new PdfOutline(root, 
            new PdfDestination(
                PdfDestination.FITH, writer.getVerticalPosition(true)),
            title, true);

在这个分支中,我们添加了一个叶子:

PdfOutline link = new PdfOutline(movieBookmark,
            new PdfAction(String.format(RESOURCE, movie.getImdb())),
            "link to IMDB");

等等。

关键是使用PdfOutline并在构建子轮廓时将父轮廓作为参数传递。

根据评论进行更新:

还有一个名为BookmarkedTimeTable的示例,我们以完全不同的方式创建大纲树:

ArrayList<HashMap<String, Object>> outlines = new ArrayList<HashMap<String, Object>>();
HashMap<String, Object> map = new HashMap<String, Object>();
outlines.add(map);

在这种情况下,map是我们可以添加分支和叶子的根对象。完成后,我们将大纲树添加到PdfStamper,如下所示:

stamper.setOutlines(outlines);

请注意,PdfStamper是我们操作现有PDF时所需的类(与我们从头开始创建PDF时使用的PdfWriter相反)。

基于另一条评论的其他更新:

要创建层次结构,您只需添加孩子。

第一级:

HashMap<String, Object> calendar = new HashMap<String, Object>();
calendar.put("Title", "Calendar");

第二级:

HashMap<String, Object> day = new HashMap<String, Object>();
day.put("Title", "Monday");
ArrayList<HashMap<String, Object>> days = new ArrayList<HashMap<String, Object>>();
days.add(day);
calendar.put("Kids", days);

第三级:

HashMap<String, Object> hour = new HashMap<String, Object>();
hour.put("Title", "10 AM");
ArrayList<HashMap<String, Object>> hours = new ArrayList<HashMap<String, Object>>();
hours.add(hour);
day.put("Kids", hours);

等等......