Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Once you are happy with your evaluation of Aspose.Cells, purchase a license at the Aspose website. Make yourself familiar with the different license types offered. If you have any questions, do not hesitate to contact the Aspose sales team.
Every Aspose license carries a one-year subscription for free upgrades to any new versions or fixes that come out during this time. Technical support is free and unlimited and provided both to licensed and evaluation users.
The license is a plain text XML file that contains details such as the product name, number of licensed developers, subscription expiry date and so on. The file is digitally signed, so do not modify the file: even adding an extra line break into the file will invalidate it.
You need to set a license before performing any operations with documents. Make sure you do this before creating a Document object. You are only required to set a license once per application or process.
In Aspose.Cells for Android via Java, the license can be embedded as a resource, or loaded from a stream:
Java
String dataDir = Environment.getExternalStorageDirectory().getPath() + "/";
// Create a stream object containing the license file
FileInputStream fstream = new FileInputStream(dataDir + "Aspose.Cells.Android.lic");
// Instantiate the License class
License license = new License();
//Set the license through the stream object
license.setLicense(fstream);To access the license as a resource by name from an Android package file:
Java
License license = new License();
InputStream inputStream = getResources().openRawResource(R.raw.license);
license.setLicense(inputStream);Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.