I googled many Java API's to parse the xml into HTML but confused from where I start. I never did any xml to html parsing task. This is ouput of resume parsing 3rd party in shape of xml data and I have to transform it into html.
Best regards
|
I googled many Java API's to parse the xml into HTML but confused from where I start. I never did any xml to html parsing task. This is ouput of resume parsing 3rd party in shape of xml data and I have to transform it into html. Best regards |
|||
|
|
|
There is no "parse to html", maybe you mean "transform to html", in that case take a look at XSLT. XSLT is a language (written in XML itself) to transform XML to another XML, and XHTML happens to be an XML, so using XSLT you can transform from one to another. As for the Java library to use, you can use directly classes in the JRE, namely javax.xml.transform.TransformerFactory and related classes. Otherwise you can use XALAN directly (see http://xalan.apache.org) or SAXON, or Cocoon 3 (http://cocoon.apache.org) which makes parsing, transforming and saving the result file transparent. |
|||
|
|
|
Disclaimer: I work for Sovren, a Resume/CV Parser vendor. There are generally two approaches for converting a Resume/CV into HTML:
Sovren provides starter XSLT templates for transforming their XML into other formats. I can't supply a full XSLT template, but here is a rewritten subset of an XSLT template for transforming ContactInfo data from HR-XML Resume 2.5 into HTML:
|
|||
|
|