Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Microservices, in conjunction with containerization make it possible to easily combine technologies. Docker allows you to easily integrate Aspose.Cells functionality into your application, regardless of what technology is in your development stack.
In case you are targeting microservices, or if the main technology in your stack is not .NET, C++ or Java, but you need Aspose.Cells functionality, or if you already use Docker in your stack, then you may be interested in utilizing Aspose.Cells for Java in a Docker container.
In this example, you create a Java application that makes a simple xlsx file, saves it and reads it. The application can then be built and run in Docker.
Create the Java Application in Eclipse using the following code. In this example, we use Aspose.Cells for Java creates a new xlsx worksheet and sets its sheet name and cell values, then reads them and outputs them.
The following figure shows a way to make a jar package using “Export” menu in Eclipse.

Now that we wrote a Java program using Aspose.Cells for Java, we got a jar package. Next we’ll make a dockerfile.
The next step is to create and configure the Dockerfile.
FROM williamyeh/java8:latest
VOLUME /tmp
ADD TestDocker.jar app.jar
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]Now the application can be built and run in Docker. Open your favorite command prompt, change directory to the folder with the Dockerfile and run the following command:
docker build -t java-app .After executing the above command, you will get the output of the XLSX worksheet and the result of the command line. At this point, a Java program has been successfully run in Linux Docker.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.