List With Long Text Line in HTML : List « PDF RTF « Java






List With Long Text Line in HTML

List With Long Text Line in HTML
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();
  }
}

           
       








itext.zip( 1,748 k)

Related examples in the same category

1.Adding list to Pdf documentAdding list to Pdf document
2.List and Sublist in HTMLList and Sublist in HTML
3.List and Sublist in PDFList and Sublist in PDF
4.Lists With Different FontsLists With Different Fonts
5.Lists with Different Font PDF and HTML
6.Changing List symbol for HTML documentChanging List symbol for HTML document
7.List Symbol IllustrationList Symbol Illustration
8.List With Long Text Line in PDFList With Long Text Line in PDF