Automate WhatsApp Document Sharing with Java
Looking to automate PDF delivery, document notifications, or file sharing from your Java applications? This guide walks you through sending PDF files to WhatsApp users using Java and the WhatsMate WA Gateway REST API. Perfect for Java developers, system administrators, and automation enthusiasts who want to integrate document delivery into their Java-based WhatsApp messaging workflows.
📋 Prerequisites
Before you begin, ensure you have:
- A WhatsMate WA Gateway account - Required for API access
- Recipient registration - Each recipient must register with the Gateway first
- Java development environment - JDK installed and configured
- PDF file ready - Have the document you want to send available locally
- Required libraries - Gson and Commons Codec (details in code comments)
⚠️ Important: Recipients must register with the WhatsMate WA Gateway before they can receive messages. Unregistered users will not receive any messages from the Gateway. Registration instructions are available on the official WhatsMate site.
📝 Step-by-Step Implementation
Follow these steps to send your first PDF document to a WhatsApp user from a Java application:
1. Copy the Java Code Template
Start by copying the following source code into your Java file:
2. Configure a few Parameters
Customize these key parameters in the Java code:
- Line 50: Replace
YOUR_INSTANCE_ID_HEREwith your WhatsApp gateway instance ID - Lines 51-52: Update
YOUR_CLIENT_ID_HEREandYOUR_CLIENT_SECRET_HEREwith your Client ID and Secret - Line 61: Replace
1234556899with the target phone number (including the country code) - Line 63: Replace
../assets/subwaymap.pdfwith the path to your PDF file - Line 65: Replace
anyname.pdfwith the desired filename for the document - Line 66: Replace
You will find the map handy.with an optional caption for your PDF
3. Compile the Java Program
You can compile and run the program using either Maven or manual compilation:
Option A: Using Maven
Add the following dependencies to your pom.xml:
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>
Then compile with Maven:
mvn compile
Option B: Manual Compilation If not using Maven, compile with:
javac -cp "jars/gson-2.8.0.jar:jars/commons-codec-1.10.jar" WaPdfSender.java
4. Send Your PDF Document
Run the compiled Java program to deliver your PDF to WhatsApp:
If using Maven:
mvn exec:java -Dexec.mainClass="WaPdfSender"
If using manual compilation:
java -cp ".:jars/gson-2.8.0.jar:jars/commons-codec-1.10.jar" WaPdfSender
🔧 Common Use Cases
This automation approach is ideal for:
- Automated report delivery - Send daily/weekly PDF reports to WhatsApp from Java applications
- Document sharing automation - Deliver invoices, receipts, or contracts via WhatsApp using Java
- System documentation - Share configuration files or logs as PDF documents from Java systems
- Educational content - Distribute learning materials or tutorials through WhatsApp from Java
- Integration with Java document generation - Combine with Java libraries that create PDFs for WhatsApp delivery
🚀 Get Started Today
Ready to automate your document sharing over WhatsApp with Java? You’ll need a trial account to access the API. Sign up for a 2-week trial and start sending PDF files within minutes!
Next Steps: Once you’ve mastered basic PDF sending, explore advanced features like sending images or group messages through the WhatsMate WA Gateway API documentation.