Hi, all! I want to convert content control's content to html. i guess the method is as follows:
1. traverse docx as 'sample\ContentControlsInfoStructure.java', find every content control
2. insert every content control in a new docx respectively
3. convert every docx to html as 'sample\ConvertOutHtml.java'.
this my code snippet:
public class ParseDocx {
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
String input_DOCX = "resource/new.docx";
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage ...