1. Products
  2.   Conholdate.Total
  3.   Java
  4.   RAR to PDF Conversion

Convert RAR Files to PDF in Java

Convert RAR files to PDF in Java effortlessly with the help of Conholdate.Total for Java APIs, supporting all main archive file formats including ZIP, RAR, GZIP, BZ2, TAR, LZ, XAR, CAB, CPIO, XZ, SHAR, WIM and 7Z. Follow our straightforward Java code example to implement RAR to PDF conversions in your Java projects quickly. Not a developer? No worries, the user-friendly online RAR to PDF converter has got you covered — just upload a RAR, hit convert button, and download your PDF file in seconds.

Download

RAR to PDF Conversion in Java

  • Create ZipInputStream with input RAR file
  • Setup output directory where unzipped files will be stored
  • Loop through each file in input RAR file and extract to output directory
  • Temporary List to hold names of extracted files from unzipped folder
  • Get the list of all files (with full paths) from unzipped folder
  • Loop through each unzipped file and convert each file to PDF
  • Merge PDF files using GroupDocs.Merger API
  • Instantiate Merger with first input PDF document in temporary List
  • Loop through list of converted PDF documents starting from second file
  • Call Save method of Merger class instance to save merged PDF document

Free App for RAR to PDF Conversion



// Supported file formats: https://docs.groupdocs.com/conversion/java/supported-document-formats/
// Works with OpenJDK 17
package com.mycompany.asposejavatest;
import java.io.*;
import java.util.ArrayList;
import org.apache.commons.compress.archivers.*;
import org.apache.commons.compress.compressors.*;
import com.groupdocs.conversion.*;
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.options.convert.PdfConvertOptions;
import com.groupdocs.conversion.contracts.PossibleConversions;
import com.groupdocs.conversion.options.convert.ConvertOptions;
import com.groupdocs.merger.*;
import com.groupdocs.merger.Merger;
public class AsposeJavaTest {
public static void main(String[] args) {
try {
InputStream inputfile = new BufferedInputStream(new FileInputStream("input.zip"));
// For those formats that are separately archived and compressed. Like tar.gz tar.bz tar.xz Use
// CompressorInputStream and than use ArchiveInputStream to load the input file.
//CompressorInputStream cis = new CompressorStreamFactory().createCompressorInputStream(inputfile);
//ArchiveInputStream ais = new ArchiveStreamFactory().createArchiveInputStream(cis);
// For formats that have builtin support for compression. Like Zip RAR JAR 7zip
// ArchiveInputStream to load the input file without CompressorInputStream
//ArchiveInputStream ais = new ArchiveStreamFactory().createArchiveInputStream(inputfile);
ArchiveEntry entry = ais.getNextEntry();
File outputDir = new File("/tmp/output");
if (!outputDir.exists()) {
outputDir.mkdirs();
}
while (entry != null) {
String filePath = outputDir.getAbsolutePath() + File.separator + entry.getName();
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(filePath));
byte[] bytesIn = new byte[1024];
int read;
while ((read = ais.read(bytesIn)) != -1) {
bos.write(bytesIn, 0, read);
}
ais.close();
bos.close();
entry = ais.getNextEntry();
}
// Temporary List to hold names of extracted files from unzipped folder
ArrayList<String> filesList = new ArrayList<>();
// Get the list of all files (with full paths) from unzipped folder
File[] files = outputDir.listFiles();
// Loop through each unzipped file and convert each file to PDF
for (File file : files) {
// Load the extracted file
Converter converter = new Converter(file.getAbsolutePath());
// Set the convert options for PDF format
PdfConvertOptions convertOptions = new PdfConvertOptions();
// Convert to PDF format
String outPath = outputDir.getAbsolutePath() + File.separator + file.getName()+ ".pdf";
converter.convert(outPath, convertOptions);
// Add the file names to temporary List after converting to PDF
filesList.add(outPath);
}
// Merge PDF files using GroupDocs.Merger API
// Instantiate Merger with first input PDF document in temporary List
Merger merger = new Merger(filesList.get(0));
// Loop through list of converted PDF documents starting from second file
for (int i = 1; i < filesList.size(); i++) {
// Call Join method of Merger class instance and pass remaining source files one by one
merger.join(filesList.get(i));
}
// Call Save method of Merger class instance to save merged PDF document
merger.save("/tmp/output.pdf");
} catch (Exception e) {
e.printStackTrace();
}
}
}

Frequently Asked Questions

How do I start converting RAR to PDF using Conholdate.Total for Java?

The Conholdate.Total for Java platform lets you try out different ways to convert archive files. Developers have two main options - they can use ready-made examples from GroupDocs for a straightforward approach, or go with Aspose examples for more control. You can also use these examples to work on both the front and back end of a project, or build your RAR to PDF conversion feature from scratch using popular Java-supporting tools like Eclipse or Visual Studio Code.

Which Java APIs from Conholdate.Total are in the example code for converting RAR to PDF?

Conholdate.Total for Java brings together all the Java APIs from Aspose and GroupDocs. Although developers have various APIs to choose from for converting RAR to PDF, we chose to show easy-to-follow examples using GroupDocs.Conversion for Java in our code snippets.

Which file formats are supported by Conholdate.Total for Java?

Conholdate.Total for Java combines libraries from Aspose and GroupDocs, allowing Java programmers to work with many different file formats like Word, Excel, Visio, images and PDF in Java and J2SE apps. This means you can easily manipulate and manage these files in your Java projects.

What is RAR file format?

RAR is a file format used for compressing and archiving files. It was developed by Eugene Roshal, a Russian software engineer, and was released in 1993. The RAR format is commonly used for sharing large files due to its high compression efficiency, which can often result in smaller file sizes than other compression methods. This makes it an ideal format for users who need to transfer large files over the internet or other networks.

The main advantage of RAR over other file formats is that it can be used to create multi-volume archives. This means that large files can be split into several smaller files, which can then be combined into a single file when needed. This allows for greater flexibility in storage and transmission, as users can transfer the smaller files more easily and then recombine them later.

RAR files can be password-protected and encrypted for added security. This is especially useful when transferring sensitive data over the internet. When creating a RAR file, users can choose to encrypt it with a password, which will be required to open the file. This makes RAR a popular choice for sharing confidential documents and files.

RAR files are typically identified by the .rar extension, and can be opened using WinRAR, a proprietary file archiving utility. WinRAR is available for Windows, Mac, and Linux operating systems, and supports a variety of compression formats, including RAR, ZIP, and 7Z. It also includes features such as file splitting, password protection, and recovery volumes, which can be used to recover data in case of a file corruption or system crash.

Learn

What is PDF file format?

PDF (Portable Document Format) is a widely used document file format developed by Adobe Systems in 1993. It was specifically designed to provide a platform-independent solution for storing and sharing documents across various operating systems and over the Internet. PDFs utilize a vector-based drawing model, storing graphical elements such as lines, shapes, and images as mathematical equations. This unique approach ensures that PDFs are resolution independent, guaranteeing consistent document quality regardless of the viewing device or program.

One of the key advantages of PDFs is their support for a range of security features. Encryption, password protection, digital signatures, and document watermarking are among the security measures available. These features make PDFs highly secure and suitable for sensitive documents, such as medical records, legal documents, government forms, and invoices. The printing industry also heavily relies on PDFs to facilitate electronic communication with customers.

Creating PDFs is a straightforward process, as they can be generated from various electronic document formats, including Word documents, PowerPoint presentations, and webpages. It’s important to note that PDFs are typically not editable directly. To modify the content of a PDF, it must first be converted to a different file format that supports editing. Numerous software programs, many of which are freely available for download, offer the functionality to convert PDFs to editable formats.

PDFs have gained immense popularity and have become a standard method for document sharing due to their versatility, security features, and consistent formatting. Their compatibility across different devices and operating systems ensures seamless document access for users. Additionally, PDFs preserve the layout, fonts, and images of the original document, making them an ideal choice for sharing visually rich content.

Learn

Popular RAR Conversion Options with Java

Convert RAR to PDF

(Portable Document Format)

Convert RAR to WORD

(Word Processing Files)

Convert RAR to IMAGE

(Digital Image Files)

Convert RAR to EXCEL

(Spreadsheet Files)

Convert RAR to DOC

(Microsoft Word Binary Format)

Convert RAR to DOCX

(Office 2007+ Word Document)

Convert RAR to DOCM

(Microsoft Word 2007 Marco File)

Convert RAR to DOT

(Microsoft Word Template Files)

Convert RAR to DOTX

(Microsoft Word Template File )

Convert RAR to DOTM

(Microsoft Word 2007+ Template File)

Convert RAR to TXT

(Text Document)

Convert RAR to RTF

(Rich Text Format)

Convert RAR to HTML

(Hyper Text Markup Language)

Convert RAR to HTM

(Hypertext Markup Language File)

Convert RAR to MHTML

(Web Page Archive Format)

Convert RAR to MHT

(MHTML Web Archive)

Convert RAR to XLS

(Microsoft Excel Spreadsheet (Legacy))

Convert RAR to XLSX

(Open XML Workbook)

Convert RAR to XLSM

(Macro-enabled Spreadsheet)

Convert RAR to XLSB

(Excel Binary Workbook)

Convert RAR to XLT

(Excel 97 - 2003 Template)

Convert RAR to XLTX

(Excel Template)

Convert RAR to XLTM

(Excel Macro-Enabled Template)

Convert RAR to CSV

(Comma Seperated Values)

Convert RAR to TSV

(Tab Seperated Values)

Convert RAR to SXC

(StarOffice Calc Spreadsheet)

Convert RAR to FODS

(OpenDocument Flat XML Spreadsheet)

Convert RAR to PPT

(Microsoft PowerPoint 97-2003)

Convert RAR to PPTX

(Open XML presentation Format)

Convert RAR to PPS

(PowerPoint Slide Show)

Convert RAR to PPSX

(PowerPoint Slide Show)

Convert RAR to PPSM

(Macro-enabled Slide Show)

Convert RAR to POT

(Microsoft PowerPoint Template Files)

Convert RAR to POTX

(Microsoft PowerPoint Template Presentation)

Convert RAR to PPTM

(Macro-enabled Presentation File)

Convert RAR to POTM

(Microsoft PowerPoint Template File)

Convert RAR to ODT

(OpenDocument Text File Format)

Convert RAR to OTT

(OpenDocument Standard Format)

Convert RAR to OTP

(OpenDocument Standard Format)

Convert RAR to ODP

(OpenDocument Presentation Format)

Convert RAR to ODS

(OpenDocument Spreadsheet)

Convert RAR to EMZ

(Windows Compressed Enhanced Metafile)

Convert RAR to WMZ

(Compressed Windows Metafile)

Convert RAR to SVG

(Scalar Vector Graphics)

Convert RAR to SVGZ

(Compressed Scalable Vector Graphics)

Convert RAR to XPS

(XML Paper Specifications)

Convert RAR to TEX

(LaTeX Source Document)

Convert RAR to DCM

(DICOM Image)

Convert RAR to WMF

(Windows Metafile)

Convert RAR to EMF

(Enhanced Metafile Format)

Convert RAR to BMP

(Bitmap Image File)

Convert RAR to PNG

(Portable Network Graphic)

Convert RAR to GIF

(Graphical Interchange Format)

Convert RAR to JPEG

(Joint Photographic Expert Group Image)

Convert RAR to TIFF

(Tagged Image File Format)

Convert RAR to WEBP

(Raster Web Image Format)

Convert RAR to JP2

(JPEG 2000 Core Image)

Convert RAR to TGA

(Truevision Graphics Adapter)

Convert RAR to PSB

(Photoshop Large Document Format)

Convert RAR to PSD

(Photoshop Document)

Convert RAR to EPUB

(Open eBook File)

Convert RAR to MD

(Markdown Language)

Convert RAR to JSON

(JavaScript Object Notation File)

Convert RAR to DICOM

(Digital Imaging & Communications)

Convert RAR to FODP

(Formula One for Data Presentation)

Convert RAR to JPG

(Joint Photographic Expert Group Image)

Convert RAR to AZW3

(Amazon KF8 eBook File)

Convert RAR to VSDX

(Visio Drawing)

 English