Hi everyone,
To continue my last post: http://www.docx4java.org/forums/xhtml-import-f28/insert-an-altchunk-within-a-table-cell-t1890.html?sid=8e1c49627334cb2731ae2f04a7792c98&sid=8e1c49627334cb2731ae2f04a7792c98#p6527.
After I import html into docx, I want to be able to export this part from docx to html. I wrapped the code in sample and have the code below:
public class AltChunkAddOfTypeHtml {
private static ObjectFactory factory;
private final static String inputfilepath = System.getProperty("user.dir")
+ "/test.docx";
public static void main(String[] args) throws Exception {
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage
.createPackage();
MainDocumentPart mdp = wordMLPackage.getMainDocumentPart();
factory = Context.getWmlObjectFactory(); ...