Licensing | Aspose.PUB for Java

Evaluation Version Limitations

We want our customers to test our components thoroughly before buying so the evaluation version allows you to use it as you would normally. The API pastes an evaluation watermark during conversion of .pub files to PDF file format.

Apply License using File or Stream Object

The license can be loaded from a file or stream object. The easiest way to set a license is to put the license file in the same folder as the aspose-pub-xx.x.jar file and specify the filename, without a path, as shown in the example below.

If you use are using any other Aspose for Java component along with Aspose.PUB for Java, please specify complete namespace for License like com.aspose.pub.License.

Loading a License from File

The easiest way to apply a license is to put the license file in the same folder as the Aspose.PUB.jar file and specify just the filename without a path.

When you call the setLicense method, the license name that you pass should be that of your license file. For example, if you change the license file name to “Aspose.pub.lic.xml” pass that filename to the com.aspose.pub.License.setLicense(…) method. The license file can be specific for Aspose.PUB for Java or you can use Aspose.Total for Java license file.

1// For complete examples and data files, please go to https://github.com/aspose-pub/Aspose.PUB-for-Java
2com.aspose.pub.License license = new com.aspose.pub.License();
3
4license.setLicense("Aspose.Pub.Java.lic");

Loading a License from a Stream Object

The following example shows how to load a license from a stream.

1// For complete examples and data files, please go to https://github.com/aspose-pub/Aspose.PUB-for-Java
2com.aspose.pub.License license = new com.aspose.pub.License();
3		
4license.setLicense(new java.io.FileInputStream("Aspose.Pub.Java.lic"));	
Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.