org.eadge.extractpdfexcel.debug.tests.personal.TestConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdf-to-excel Show documentation
Show all versions of pdf-to-excel Show documentation
A Java library used to convert PDF to Excel.
The newest version!
package org.eadge.extractpdfexcel.debug.tests.personal;
import org.eadge.extractpdfexcel.PdfConverter;
import java.io.IOException;
public class TestConverter
{
public static void main(String[] args) throws IOException
{
PdfConverter.createExcelFile("test/pdf/example.pdf", "test/pdf/example.xcl");
}
}