Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
A “Hello, World!” code is often the first simple example to write uisng “Aspose.Words for Java”, and it can also be used as a sanity test to ensure the software intended to compile or run source code is correctly installed.
“Aspose.Words for Java” library gives developers direct access to create, modify, merge, convert, compare Word and Web documents. PDF, DOCX, DOC, RTF, ODT, EPUB, HTML and many other file formats are supported.
Below code snippet follows these steps:
The following code snippet is a “Hello, World!” example to exhibit working of “Aspose.Words for Java” API:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Java.git. | |
Document docA = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(docA); | |
// Insert text to the document start. | |
builder.moveToDocumentStart(); | |
builder.write("First Hello World paragraph"); | |
Document docB = new Document(getMyDir() + "Document.docx"); | |
// Add document B to the and of document A, preserving document B formatting. | |
docA.appendDocument(docB, ImportFormatMode.KEEP_SOURCE_FORMATTING); | |
docA.save(getArtifactsDir() + "HelloWorld.SimpleHelloWorld.pdf"); |
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.