Android Code for Merging XLSX Files into POTM: A Complete Guide
// Merge XLSX to HTML
LightCellsApi api = new LightCellsApi(System.getenv("CellsCloudTestClientId"),System.getenv("CellsCloudTestClientSecret"),"v3.0",System.getenv("CellsCloudTestApiBaseUrl"));
String remoteFolder = "TestData/";
String localName = "Book1.xlsx";
String remoteName = "Book1.xlsx";
String AssemblyTestXlsx = "assemblytest.xlsx";
String DataSourceXlsx = "datasource.xlsx";
HashMap<String,File> fileMap = new HashMap<String,File>();
fileMap.put(AssemblyTestXlsx , new File("D:\\TestData\\" + AssemblyTestXlsx));
fileMap.put(DataSourceXlsx , new File("D:\\TestData\\" + DataSourceXlsx) );
PostMergeRequest request = new PostMergeRequest();
request.setFile(fileMap);
request.setFormat("png");
request.setMergeToOneSheet(false);
request.setPassword("");
request.setCheckExcelRestriction(false);
FileInfo response = api.postMerge(request);
%!(EXTRA string=XLSX, string=HTML)
// Merge HTML to POTM
public static void main(String[] args) throws ApiException {
SlidesApi slidesApi = new SlidesApi("my_client_id", "my_client_secret");
// Prepare request data for presentations to merge.
PresentationsMergeRequest request = new PresentationsMergeRequest();
request.setPresentationPaths(Arrays.asList("MyResources/example1.pptx", "MyResources/example2.pptx"));
request.setPresentationPasswords(Arrays.asList("password1"));
// Merge the presentations.
Document response = slidesApi.merge("MyPresentation.pptx", request, "my_password", "MyFolder", null);
// Output: https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx?folder=MyFolder
System.out.println(response.getSelfUri().getHref());
%!(EXTRA string=HTML, string=POTM)
How to Merge XLSX to POTM in Cloud Apps
- Initialize WordsApi with Client Id, Client Secret, Base URL & API version
- Set requestDocument assign the local XLSX file name
- Set requestDocumentListDocumentEntriesFileReference and assign local POTM file name
- Set requestDocumentListDocumentEntries and set file_reference, import_format_mode parameters
- Create DocumentEntryList instance and assing requestDocumentListDocumentEntries to document_entries parameter
- Call AppendDocumentOnlineRequest to merge XLSX file with POTM document requestDocument and requestDocumentList
- Call WordsApi appendDocumentOnline with parameters
Get Started with Aspose.Total REST APIs
- Create an account at Dashboard to get free API quota & authorization details
- Get Aspose.Words and Aspose.Cells Cloud SDKs for Android source code from Aspose.Words GitHub and Aspose.Cells GitHub repos to compile/use the SDK yourself or head to the Releases for alternative download options.
- Also have a look at Swagger-based API Reference for Aspose.Words and Aspose.Cells to know more about the REST API.
How to Merge Excel XLSX with Other Formats Online
Enhance your document management capabilities by merging XLSX files into other formats using the powerful Aspose.Cells API. Easily integrate your merged files with other Aspose.Total APIs like Aspose.Words, Aspose.PDF, Aspose.Email, Aspose.Slides, Aspose.Diagram, Aspose.Tasks, Aspose.3D, Aspose.HTML. This versatile solution enables you to combine files into a single document across multiple formats.
For a comprehensive list of supported formats and merging capabilities, visit the Aspose.Total Cloud page.
FAQ
- Where can I see the release notes for Aspose.Total Cloud API?Complete release notes can be reviewed at Aspose.Total Cloud Documentation.
- How can I get started with Aspose.Total REST APIs?Quickstart not only guides through the initialization of Aspose.Total Cloud API, it also helps in installing the required libraries.
- What is POTM Format?Files with POTM extension are Microsoft PowerPoint template files with support for Macros. POTM files are created with PowerPoint 2007 or above and contains default settings that can be used to create further presentation files. These settings can include styles, backgrounds, colour palette, fonts and defaults along with macros that consist of custom functions for doing particular task. They may also be opened by a previous version of PowerPoint with Open XML document support installed. POTM files can be opened in Microsoft PowerPoint for editing like any other PowerPoint file.
- What file formats are supported by Aspose.Total Cloud API?Aspose.Total Cloud can merge file formats from any product family to any other product family to PDF, DOCX, XPS, image(TIFF, JPEG, PNG BMP), MD and more. Checkout the complete list of supported file formats.
- What is XLSX Format?XLSX is well-known format for Microsoft Excel documents that was introduced by Microsoft with the release of Microsoft Office 2007. Based on structure organized according to the Open Packaging Conventions as outlined in Part 2 of the OOXML standard ECMA-376, the new format is a zip package that contains a number of XML files. The underlying structure and files can be examined by simply unzipping the .xlsx file.
- I can not find the SDK for my favorite language. What should I do?Aspose.Total Cloud is also available as a Docker Container. Try using it with cURL in case your required SDK is not available yet.
- Is it safe to merge XLSX to POTM in the Cloud?Of course! Aspose Cloud uses Amazon EC2 cloud servers that guarantee the security and resilience of the service. Please read more about Aspose's Security Practices.