Split XLS Files Online or using Android App
Develop powerful android based XLS document splitter applications. Freely split documents including XLS files online via app with instant download.
Split XLS Files Online
- Upload XLS File to Split.
- Define the Splitting Criteria.
- Click the “Split” Button.
- Select the output format.
- Download splitted files.
Split XLS File via Android App
- Add Java library reference within your project.
- Load XLS File
- Iterate all worksheets inside the workbook
- On each iteration, there is ith worksheet
- Create new Workbook class object
- Use getWorksheets().get(0).copy to copy the ith sheet
- Call save method to save the ith sheet
Java Code : Split XLS Files
// Load XLS spreadsheet | |
Workbook wbk = new Workbook("sourceFile.xls"); | |
//Iterate all worksheets inside the workbook | |
for(int i=0; i< wbk.getWorksheets().getCount(); i++){ | |
//Access the i th worksheet | |
Worksheet worksheet = wbk.getWorksheets().get(i); | |
Workbook bk = new Workbook(); | |
bk.getWorksheets().get(0).copy(worksheet); | |
// Save the file. | |
bk.save("path"+worksheet.getName()+"-"+i+".xls"); | |
} |
Develop XLS File Splitter Application Android App
Need to develop android script or utility app to easily split XLS files? With
Aspose.Cells for Android via Java
, child API of
Aspose.Total for Android via Java
, any android developer can integrate the above API code to program splitter app. Powerful android library for splitting document supports many popular formats including XLS format such as PDF, Word, Excel and PowerPoint files.
Android XLS Splitter Library
- We host our Java packages in Maven repositories .
- Aspose.Cells for Java is a common JAR file containing byte-code.
- Follow the step-by-step instructions on how to install Aspose.Cells for Android via Java.
System Requirements
- Android OS 2.0 or above.
- Java package is cross-platform and runs on all operating systems with JVM implementation.
For more details please refer to [Product Documentation](https://docs.aspose.com/cells/java/system-requirements/).