Some test text!

Search
Hamburger Icon

Java / Guides / Remove bookmark

Removing bookmarks from PDFs in Java

To remove a bookmark by title in an existing document.

PDFDoc doc = new PDFDoc(filename);

// how to find and delete a bookmark by title text.
Bookmark foo = doc.getFirstBookmark().find("foo");
if (foo.isValid()) {
	foo.delete();
}

Read, add, edit PDF outlines and bookmarks Full code sample which illustrates how to read and edit existing outline items and create new bookmarks using the high-level API

About removing a bookmark

The Bookmarks class also allows you to quickly find Bookmarks based on the title text. For example, the above code snippet looks for a Bookmark called foo and then removes it from the outline tree.

Get the answers you need: Chat with us