Using Aspose.word

Am new to Aspose.word and am wondering: after downloading and unzipping Aspose.word what next? how do really use it?
thank u.

This message was posted using Page2Forum from Install Aspose.Words for Java - Aspose.Words for Java

Hello

Thanks for your interest in Aspose.Words for Java. Please, unzip the archive and you will see LIB folder inside. In this folder you will find:
Aspose.Words.jdk14.jar
Aspose.Words.jdk15.jar
Aspose.Words.jdk16.jar
The next steps, please add Aspose.Words.jdk15.jar in to your project, and try using.
Please see the following simple code:

// Create empty Document and DocuemntBuilder
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Write something
builder.writeln("Hello World");
// Save document
doc.save("C:\\Temp\\out.doc");

Please see the following Programmer’s Guide which provides information about key programming concepts, as well as code samples and detailed explanations:
https://docs.aspose.com/words/java/
Please let me know in case of any issues. I will be glad to help you.
Best regards,