| Home >> All >> com >> lowagie >> text >> [ html Javadoc ] |
| | com.lowagie.text.html.simpleparser.* (6) |
com.lowagie.text.html: Javadoc index of package com.lowagie.text.html.
Package Samples:
com.lowagie.text.html.simpleparser
Classes:
HtmlWriter: A DocWriter class for HTML. An HtmlWriter can be added as a DocListener to a certain Document by getting an instance. Every Element added to the original Document will be written to the OutputStream of this HtmlWriter . Example: // creation of the document with a certain size and certain margins Document document = new Document(PageSize.A4, 50, 50, 50, 50); try { // this will write HTML to the Standard OutputStream HtmlWriter.getInstance(document, System.out); // this will write HTML to a file called text.html HtmlWriter.getInstance(document, new FileOutputStream("text.html")); // this will write ...
HtmlEncoder: This class converts a String to the HTML-format of a String. To convert the String , each character is examined: ASCII-characters from 000 till 031 are represented as &#xxx; (with xxx = the value of the character) ASCII-characters from 032 t/m 127 are represented by the character itself, except for: '\n' becomes <BR>\n " becomes &quot; & becomes &amp; < becomes &lt; > becomes &gt; ASCII-characters from 128 till 255 are represented as &#xxx; (with xxx = the value of the character) Example: String htmlPresentation = HtmlEncoder.encode("Marie-Thérèse ...
HtmlTagMap: The Tags -class maps several XHTML-tags to iText-objects.
HtmlTags: A class that contains all the possible tagnames and their attributes.
SAXmyHtmlHandler: The Tags -class maps several XHTML-tags to iText-objects.
HtmlPeer: This interface is implemented by the peer of all the iText objects.
HtmlParser: This class can be used to parse some HTML files.
ChainedProperties
FactoryProperties
HTMLWorker
IncCell
IncTable
StyleSheet
| Home | Contact Us | Privacy Policy | Terms of Service |