Hello. I am trying to convert my document to xhtml and back. On some step all styles are mangled.
Here is the code for converting from xhtml to docx
public static void html2docx1(InputStream is, OutputStream os) {
try {
WordprocessingMLPackage wmlp = WordprocessingMLPackage
.createPackage();
XHTMLImporter x = new XHTMLImporterImpl(wmlp);
wmlp.getMainDocumentPart().getContent()
.addAll(x.convert(is, null));
File f = File.createTempFile("doc", "docx");
wmlp.save(f);
FileInputStream fis = new FileInputStream(f);
int n = 0;
byte buff[] = new byte[1024];
while (n ...