Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.Words for Java does not require third party product such as Microsoft Word to be installed. Aspose.Words itself is an engine for creating, modifying, converting, and rendering of documents in various formats, including Microsoft Word document formats.
Any Operating System that can run the Java Runtime Environment (JRE) can run Aspose.Words for Java. The following table lists most, but not all, supported Operating Systems.
Operating System | Versions |
Microsoft Windows |
|
Linux |
|
macOS |
|
Mobile |
|
Aspose.Words for Java supports any cloud platforms that can run Java applications.
Aspose.Words for Java supports Java 7 and newer. If you are forced to use Java 6, we still release a separate JAR for Java 6.
As we stated above, Aspose.Words for Java requires only the Java Runtime Environment, and you do not need to install any additional libraries.
However, sometimes there are situations where you might need to add third-party libraries:
Follow these steps to install native JAI and ImageIO on Windows:
Follow these steps to install native JAI and ImageIO on Linux:
Download JAI 1.1.3 choosing the appropriate architecture:
Extract the file into a temporary directory.
Move JAR files to the JDK/JRE lib/ext folder.
Move SO files to the JDK/JRE lib/amd64 folder.
For example, on a 64-bit Ubuntu system, steps 1-4 will look like this:
$ cd /tmp
$ wget https://download.java.net/media/jai/builds/release/1_1_3/jai-1_1_3-lib-linux-amd64.tar.gz && \
gunzip -c jai-1_1_3-lib-linux-amd64.tar.gz | tar xf - && \
mv /tmp/jai-1_1_3/lib/*.jar $JAVA_HOME/jre/lib/ext/ && \
mv /tmp/jai-1_1_3/lib/*.so $JAVA_HOME/jre/lib/amd64/ && \
rm /tmp/jai-1_1_3-lib-linux-amd64.tar.gz && \
rm -r /tmp/jai-1_1_3
Download JAI Image I/O 1.1, choosing the appropriate architecture:
Extract the file into a temporary directory.
Move JAR files to the JDK/JRE lib/ext folder.
Move SO files to the JDK/JRE lib/amd64 folder.
For example, on a 64-bit Ubuntu system, steps 5-8 will look like this:
$ cd /tmp
$ wget https://download.java.net/media/jai-imageio/builds/release/1.1/jai_imageio-1_1-lib-linux-amd64.tar.gz && \
gunzip -c jai_imageio-1_1-lib-linux-amd64.tar.gz | tar xf - && \
mv /tmp/jai_imageio-1_1/lib/*.jar $JAVA_HOME/jre/lib/ext/ && \
mv /tmp/jai_imageio-1_1/lib/*.so $JAVA_HOME/jre/lib/amd64/ && \
rm /tmp/jai_imageio-1_1-lib-linux-amd64.tar.gz && \
rm -r /tmp/jai_imageio-1_1
Aspose.Words for Java uses a temporary directory on your computer, which is specified via java.io.tmpdir
system property. Aspose.Words for Java writes temporary files and then removes these files as soon as rendering is completed.
java.io.tmpdir
is a standard Java system property that is also used by disk-based storage policies. It determines where the JVM writes temporary files.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.