Adding list to Pdf document
import java.io.FileOutputStream;
import com.lowagie.text.Document;
import com.lowagie.text.List;
import com.lowagie.text.Paragraph;
import com.lowagie.text.html.HtmlWriter;
public class HTMLListsAtoEPDF {
public static void main(String[] args) {
Document document = new Document();
try {
HtmlWriter.getInstance(document, new FileOutputStream("HTMLListsAtoEPDF.html"));
document.open();
Paragraph paragraph = new Paragraph("A to E:");
List list = new List(false, 10);
list.add("A");
list.add("B");
list.add("C");
list.add("D");
list.add("E");
paragraph.add(list);
document.add(paragraph);
} catch (Exception ioe) {
System.err.println(ioe.getMessage());
}
document.close();
}
}
itext.zip( 1,748 k)Related examples in the same category