Are there API’s that can be used by a Java program to convert the .SPL files to PDF files?

Hi,

This whole process has to be implemented problematically or in some automated way. I need further help with the following questions.

1. Are there API's that can be used by a Java program to convert the .SPL files?
2. IF API's are not available, suggest an approach to schedule a job to trigger the conversion.
3. Does the utility only works on windows only also support Linux?
4. I realize that you have a SDK for java as well. Can you help me download the SDK for evaluation? Is it possible?

Do suggest a feasible approach. Once I am done with the PoC, I would revert back for a licensed version procurement.

Thanks,
Customer
----------------------------------------------------------

image
>>1. Are there API's that can be used by a Java program to convert the .SPL files?

Yes, "VeryPDF SPL to PDF Converter Command Line" is a command line application, you can call it from Java code easily,

https://www.verypdf.com/app/hookprinter/try-and-buy.html#spl-to-pdf-cmd
https://www.verypdf.com/dl2.php/spl2pdf_cmd.zip

after you download it, you can call it from your Java code, please refer to a simple source code at below,
--------------------------
Process process = new ProcessBuilder("E:\\spl2pdf_cmd\\spl2pdf.exe","D:\\test.spl","D:\\out.pdf").start();
InputStream is = process.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line;

System.out.printf("Output of running %s is:", Arrays.toString(args));

while ((line = br.readLine()) != null) {
  System.out.println(line);
}
--------------------------

>>2. IF API's are not available, suggest an approach to schedule a job to trigger the conversion.

You can also call spl2pdf.exe from a schedule job easily.

>>3. Does the utility only works on windows only also support Linux?

Yes, spl2pdf.exe is a Windows application, it doesn't support Linux yet, but we can port it to the Linux system if you need.

>>4. I realize that you have a SDK for java as well. Can you help me download the SDK for evaluation? Is it possible?

You can download it from this web page directly,

https://www.verypdf.com/app/hookprinter/try-and-buy.html#spl-to-pdf-cmd
https://www.verypdf.com/dl2.php/spl2pdf_cmd.zip

You can call "VeryPDF SPL to PDF Converter Command Line" from Java code easily, please look at #1 at above.

VeryPDF

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *


Verify Code   If you cannot see the CheckCode image,please refresh the page again!