Skip to content Skip to sidebar Skip to footer

How To Do Html To Xml Conversion To Generate Closed Tags?

How to do xml to html conversion to generate closed tags. The context is explained here: Error while generating pdf from Html file in Java using iText When I try converting html to

Solution 1:

You are experiencing this problem because you are feeding HTML to iText's XML Worker. XML Worker requires XML, so you need to convert your HTML into XHTML.

There is an example on how to do this on the official iText site: D00_XHTML

publicstaticvoidtidyUp(String path)throws IOException {
    Filehtml=newFile(path);
    byte[] xhtml = Jsoup.parse(html, "US-ASCII").html().getBytes();
    Filedir=newFile("results/xml");
    dir.mkdirs();
    FileOutputStreamfos=newFileOutputStream(newFile(dir, html.getName()));
    fos.write(xhtml);
    fos.close();
}

In this example, we get a path to an ordinary HTML file (similar to what you have). We then use the Jsoup library to parse the HTML into an XHTML byte array. In this example, we use that byte array to write an XHTML file to disk. You can use the byte array directly as input for XML Worker.

Post a Comment for "How To Do Html To Xml Conversion To Generate Closed Tags?"