Split XLSX Files Online or using Android App
Develop powerful android based XLSX document splitter applications. Freely split documents including XLSX files online via app with instant download.
Split XLSX Files Online
- Upload XLSX File to Split.
- Define the Splitting Criteria.
- Click the “Split” Button.
- Select the output format.
- Download splitted files.
Split XLSX File via Android App
- Add Java library reference within your project.
- Load XLSX 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 XLSX 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 XLSX File Splitter Application Android App
Need to develop android script or utility app to easily split XLSX 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 XLSX format such as PDF, Word, Excel and PowerPoint files.
Android XLSX 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/).