Dear Aspose Support Team,
I have tried to open attached document (TestDocument.docx) using aspose-words-15.5.0-jdk16 and save text content to output file (text.txt).
The source code is simple:
FileInputStream documentInputStream = new FileInputStream(pathToDocXFile);
Document wordDocument = new Document(documentInputStream);
documentInputStream.close();
String originalText = wordDocument.getText();
Files.write(new File("PATH_ON_LOCAL_DRIVE").toPath(), originalText.getBytes(StandardCharsets.UTF_8));
In the output file I see the next issues with content.
a) On the top of document there is a : HYPERLINK HYPERLINK : with special paragraphs within content
b) Missed bullets in output: 1. 2. 6.-13.
Could you please investigate these issues? Especially issues related to bullets because I can such kind of issues quite often.
Thanks,
Andrei