Notes on the javax.xml.transform package

Jean-François Perrot

  1. 3 key concepts (interfaces) : Transformer , Source , Result
    1. A Transformer object  tr takes a Source object  src and uses a Result object res
    2. Creating a Transformer object
    3. DOM : javax.xml.transform.dom
    4. Stream : javax.xml.transform.stream
    5. SAX : javax.xml.transform.sax

  2. Examples
    1. Names / marks : From text to HTML
    2. Menu : XML to PDF


Summary : http://docs.oracle.com/javase/8/docs/api/javax/xml/transform/package-summary.html

  1. 3 key concepts (interfaces) : Transformer , Source , Result

  2. Examples