Aspose Words for Java Support for PDF conversion

Does Aspose Words for Java version 10.4 support conversion from Microsoft Word Documents to PDF without the need to buy Aspose PDF?

Thank you,

Hi
Thanks for your request. Yes, of course, currently Aspose.Words supports direct conversion (without using Aspose.Pdf). Please see the following link for more information:
https://docs.aspose.com/words/net/convert-a-document-to-pdf/
So, you can try using the following code to convert your document to PDF:

Document doc = new Document("in.doc");
doc.Save("out.pdf");

Best regards,