Use our document conversion API to create portable, robust and secure software in Java. This is a powerful software solution to import and export Word, PDF, Web documents using Java.
Need to convert a document from one format to another programmatically? With Aspose.Words for Java any developer can convert files with just a few lines of Java code.
Powerful Java library allows converting documents to many popular formats with professional quality:
The following example demonstrates how to convert a document in Java. Load a file from the local drive, then simply save it, specifying the required file format in extension. For both input and output files you can use fully qualified filenames. The output content and formatting will be identical to the original document.
// Repository path: https://releases.aspose.com/java/repo/
// Maven, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>ver</version>
<classifier>jdk17</classifier>
</dependency>
Copy
// Repository path: https://releases.aspose.com/java/repo/
// Gradle, where 'ver' - Aspose.Words version number, for example, 24.4.
compile(group: 'com.aspose', name: 'aspose-words', version: 'ver', classifier: 'jdk17')
Copy
// Repository path: https://releases.aspose.com/java/repo/
// Ivy, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency org="com.aspose" name="aspose-words" rev="ver">
<artifact name="aspose-words" m:classifier="jdk17" ext="jar"/>
</dependency>
Copy
// Repository path: https://releases.aspose.com/java/repo/
// Sbt, where 'ver' - Aspose.Words version number, for example, 24.4.
libraryDependencies += "com.aspose" % "aspose-words" % "ver"
Copy
import com.aspose.words.*;
Document doc = new Document("Input.docx");
doc.save("Output.pdf");
import com.aspose.words.*;
Document doc = new Document("Input.docx");
doc.save("Output.pdf");
import com.aspose.words.*;
Document doc = new Document("Input.docx");
ImageSaveOptions saveOptions = new ImageSaveOptions(SaveFormat.pdf);
for (int page = 0; page < doc.getPageCount(); page++)
{
saveOptions.setPageSet(new PageSet(page));
doc.save(String.format("Output_%d.pdf", page + 1), saveOptions);
}
import com.aspose.words.*;
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertImage("Input.docx");
doc.save("Output.pdf");
import com.aspose.words.*;
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.insertImage("Input.docx");
shape.getShapeRenderer().save("Output.pdf", new ImageSaveOptions(SaveFormat.pdf));
We host our Java packages in Maven repositories. 'Aspose.Words for Java' is a common JAR file containing byte-code. Please follow the step-by-step instructions on how to install it to your Java developer environment.
Java SE 7 and more recent Java versions are supported. We also provide a separate package for Java SE 6 in case you are obliged to use this outdated JRE.
Our Java package is cross-platform and runs on all operating systems with JVM implementation, including Microsoft Windows, Linux, macOS, Android and iOS.
For information on optional package dependencies, such as JogAmp JOGL, Harfbuzz font engine, Java Advanced Imaging JAI, please refer to Product Documentation.