Merge PDF Documents Online or using Android App
Develop powerful android based PDF document merging application. Combine multiple PDF documents into single one online for free via app. Save PDF file as PDF, Images, Word, Excel, PowerPoint & many other formats online.
Merge PDF Files Online
- Upload PDF files to merge them into single one online for free.
- Enter the parameters like selection from dropdown.
- Save to required format: PDF, DOCX, DOC, XLSX, PPTX, Image, HTML, and others
- Click the “Merge” button to Merge PDF into desired format.
- Download the combined PDF file to view instantly.
Merge PDF File via Android App
- Add Java library reference into your project
- Load the first PDF document using Document class.
- Load the second PDF document using another instace of the same class.
- Use the first instance and call getPages().add function with second one as parameter.
- Call save method using the first object and get the merged files.
Java Code : Merge PDF Files
Document pdfFileOne = new Document(dataDir + "DocumentOne.pdf"); | |
Document pdfFileSecond = new Document(dataDir + "DocumentSecond.pdf"); | |
pdfFileOne.Pages.Add(pdfFileSecond.Pages); | |
pdfFileOne.Save(dataDir + "MergedFiles.pdf"); |
Develop PDF File Merger Android App
Need to develop android script or utility app to easily merge multiple PDF files? With
Aspose.PDF for Android via Java
, child API of
Aspose.Total for Android via Java
, any android developer can integrate the above API code to program merging app across documents. Powerful android library allows programming document merger solution that can support many popular formats including PDF format.
Android Merging Library for PDF Files
- We host our Java packages in Maven repositories .
- Aspose.PDF for Java is a common JAR file containing byte-code.
- Follow the step-by-step instructions on how to install Aspose.PDF for Android via Java.
System Requirements
- Android API 31 and 32
- Android 4.0 and above
- Android Studio and SDK tools
For more details about optional package dependencies, such as JogAmp JOGL, Harfbuzz font engine, Java Advanced Imaging JAI please refer to [Product Documentation](https://docs.aspose.com/pdf/java/system-requirements/).