Android API to merge multiple Excel files into a file.

Android library to merge multi Excel files into a file.

Use Cells Merge REST API to merge multiple Excel files into a file in Android. This professional solution merge multiple Excel files into a Microsoft Excel or OpenOffice Calc spreadsheet using Android.

Merge multiple Excel files into a file - Android REST API

API Request:
POST
https://api.aspose.cloud/v3.0/cells/merge

Merging multiple Excel files into a file is a complex task. Merging multiple Excel files into a file transitions is performed by our Android SDK while maintaining the source spreadsheet's main structural and logical content. Our Android library is a professional solution to merge multiple Excel files into a file online. This Cloud SDK gives Android developers powerful functionality and perfect API.

Code example in Android using REST API to merge multiple Excel files into a file

// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/
try{
LightCellsApi api = new LightCellsApi(System.getenv("CellsCloudTestClientId"),System.getenv("CellsCloudTestClientSecret"),"v3.0",System.getenv("CellsCloudTestApiBaseUrl"));
String AssemblyTestXlsx = "assemblytest.xlsx";
String DataSourceXlsx = "datasource.xlsx";
HashMap<String,File> fileMap = new HashMap<String,File>();
fileMap.put(AssemblyTestXlsx , new File("C:\\TestData\\" + AssemblyTestXlsx));
fileMap.put(DataSourceXlsx , new File("C:\\TestData\\" + DataSourceXlsx) );
FilesResult response = api.postMerge(fileMap,"pdf",false,false);
} catch (ApiException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}


How to use Java API to merge


  1. Create an account at Dashboard to get free API quota & authorization details
  2. Initialize CellsApi with Client Id, Client Secret, Base URL & API version
  3. Call postMerge method to get the resultant stream


System Requirements


  1. Android 7 or newer
  2. Java(TM) SE Runtime Environment