ListWithLongTextLineHTML.java Source code

Java tutorial

Introduction

Here is the source code for ListWithLongTextLineHTML.java

Source

import java.io.FileOutputStream;
import java.io.IOException;

import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Font;
import com.lowagie.text.FontFactory;
import com.lowagie.text.List;
import com.lowagie.text.ListItem;
import com.lowagie.text.Paragraph;
import com.lowagie.text.html.HtmlWriter;
import com.lowagie.text.pdf.PdfWriter;

public class ListWithLongTextLineHTML {
    public static void main(String[] args) {
        Document document = new Document();
        try {
            HtmlWriter.getInstance(document, new FileOutputStream("ListWithLongTextLineHTML.html"));
            document.open();

            List list = new List(true, 20);
            list.add(new ListItem("First line"));
            list.add(new ListItem(
                    "Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text "));
            list.add(new ListItem("Third line"));

            document.add(list);
        } catch (Exception ioe) {
            System.err.println(ioe.getMessage());
        }
        document.close();
    }
}