Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.Cells for Java API depends on some additional libraries; if they are missing, an exception may be thrown as java.lang.ClassNotFoundException.
This article lists such kinds of exceptions and explains which libraries need to be installed to resolve them.
Aspose.Cells for Java API depends on Bouncy Castle for encryption and decryption features. If the program needs to load or save encrypted spreadsheets, you must add a reference to bcprov-jdk16-146.jar in the project’s class path.
You may encounter the java.lang.ClassNotFoundException: org.bouncycastle.jce.provider.BouncyCastleProvider.
The solution is actually very simple, as detailed below.
\JDK 1.6\aspose-cells-x.x.0-java\lib directory.Alternatively, you can add the dependency in the pom.xml and let the project resolve the dependency via Maven.
<dependencies>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk16</artifactId>
<version>1.46</version>
<type>jar</type>
</dependency>
</dependencies>Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.