Hello,
I am trying to convert docx to HTML in a web application(PEGA).
I imported the necessary jars linked to this based on my search.
Issue -1 Certain converted html loses its format.
Issue -2 If i use byteArray instead of file resulting HTML is messed up.
Not sure where i am wrong.
java.util.Base64.Decoder decoder = java.util.Base64.getDecoder();
java.util.Base64.Encoder encoder = java.util.Base64.getEncoder();
//Get inputstream from Case Document as a param
byte[] bs = decoder.decode(Word.getBytes());
InputStream is ...