All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.docx4j.samples.AltChunkXHTMLRoundTrip Maven / Gradle / Ivy

The newest version!
package org.docx4j.samples;

import org.docx4j.XmlUtils;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
import org.docx4j.openpackaging.parts.WordprocessingML.AltChunkType;
import org.docx4j.openpackaging.parts.WordprocessingML.MainDocumentPart;

/**
 * Create a docx containing an XHTML AltChunk,
 * and then convert that to normal docx content.
 * @author jharrop
 *
 */
public class AltChunkXHTMLRoundTrip {

	/**
	 * @param args
	 */
	public static void main(String[] args)  throws Exception {

		WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.createPackage();
		MainDocumentPart mdp = wordMLPackage.getMainDocumentPart();
		
		mdp.addParagraphOfText("Paragraph 1");

		// Add the XHTML altChunk
		String xhtml = "Import me

Hello World!

"; mdp.addAltChunk(AltChunkType.Xhtml, xhtml.getBytes()); mdp.addParagraphOfText("Paragraph 3"); // Round trip mdp.convertAltChunks(); // Display result System.out.println( XmlUtils.marshaltoString(wordMLPackage.getMainDocumentPart().getJaxbElement(), true, true)); wordMLPackage.save(new java.io.File(System.getProperty("user.dir") + "/OUT_AltChunkXHTMLRoundTrip.docx")); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy