Why to Convert
The Portable Document Format (PDF) is a widely used file format for documents. It is used to store and share documents in a secure and reliable way. However, PDF files are not suitable for editing and manipulating data. Therefore, it is necessary to convert PDF files to other formats such as XLSX or XLTX.
How Aspose.Total Helps for PCL to XLTX Conversion
Aspose.Total for Android via Java is a powerful suite of APIs that can be used to convert PCL to XLSX and then XLSX to XLTX. The suite consists of two APIs, Aspose.PDF for Android via Java and Aspose.Cells for Android via Java.
Aspose.PDF for Android via Java is a powerful PDF manipulation API that can be used to convert PCL to XLSX. It provides a wide range of features such as document conversion, text extraction, image extraction, and more. It also supports a variety of formats such as PDF, XLSX, XLTX, HTML, and more.
Aspose.Cells for Android via Java is a powerful spreadsheet processing API that can be used to convert XLSX to XLTX. It provides a wide range of features such as document conversion, text extraction, image extraction, and more. It also supports a variety of formats such as XLSX, XLTX, HTML, and more.
The two APIs can be used together to integrate PCL to XLTX conversion feature within your Android applications in two step process. Firstly, by using Aspose.PDF for Android via Java you can covert PCL to XLSX. Secondly, you can convert XLSX to XLTX by using Aspose.Cells for Android via Java. Both APIs come under Aspose.Total for Android via Java product family.
Android API to Render PCL to XLTX
Get Started with Android via Java APIs
You can easily use Aspose.Total for Android via Java directly from Maven and install Aspose.PDF for Android via Java and Aspose.Cells for Android via Java in your applications.
Alternatively, you can get a ZIP file from downloads .
// supports PDF, CGM, EPUB, TeX, PCL, PS, SVG, XPS, MD, MHTML, XML, and XSLFO file format | |
// load PDF with an instance of Document | |
Document document = new Document("template.pdf"); | |
// save document in XLSX format | |
document.save("XlsxOutput.xlsx", SaveFormat.Xlsx); | |
// load the XLSX file in an instance of Workbook | |
Workbook book = new Workbook("XlsxOutput.xlsx"); | |
// supports CSV, XLSB, XLSM, XLT, XLTX, XLTM, XLAM, TSV, TXT, ODS, DIF, MD, SXC, and FODS file format | |
// save XLSX as CSV | |
book.save("output.csv", SaveFormat.AUTO); |
Get XMP Metadata of PCL File in Android Apps
Aspose.PDF for Android via Java allows you to access a PCL file’s XMP metadata. In order to get the metadata, create a Document object and open the input PCL file and use the getMetadata() property to get the metadata.
// supports PDF, CGM, EPUB, TeX, PCL, PS, SVG, XPS, MD, MHTML, XML, and XSLFO file format | |
// Open document | |
Document pdfDocument = new Document("input.pdf"); | |
// get create date property | |
System.out.println("xmp:CreateDate: " + pdfDocument.getMetadata().get_Item("xmp:CreateDate")); | |
// get nickname property | |
System.out.println("xmp:Nickname: " + pdfDocument.getMetadata().get_Item("xmp:Nickname")); | |
// get custom property | |
System.out.println("xmp:CustomProperty: " + pdfDocument.getMetadata().get_Item("xmp:CustomProperty")); |
Protect XLTX Document in Android via Java
Aspose.Cells for Android via Java supports protecting your XLTX file depending upon your needs. In order to protect your document you can use protectSharedWorkbook method of Workbook class.
// supports CSV, XLSB, XLSM, XLT, XLTX, XLTM, XLAM, TSV, TXT, ODS, DIF, MD, SXC, and FODS file format | |
// open CSV file format | |
Workbook wb = new Workbook("output.csv"); | |
// protect the shared workbook with password | |
wb.protectSharedWorkbook("1234"); | |
// save the output Excel file | |
wb.save("unprotected.csv"); |