I wrote a program to convert dwg file into pdf file using a program as bellow,
package gis;
import java.io.*;
import java.util.*;
public class convert {
public static void main(String[] args) {
Process process;
try {
process = new ProcessBuilder("C:\\Program Files\\Any DWG to PDF Converter Pro\\dp.exe /InFile E:\\L4_project\\sample\\GIS\\Albtross.dxf /OutFile E:\\L4_project\\sample\\GIS\\Albtross.pdf").start();
InputStream is = process.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line;
while ((line = br.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
but I m getting exception,
java.io.IOException: Cannot run program "dp.exe /InFile E:\L4_project\sample\GIS\Albtross.dxf /OutFile E:\L4_project\sample\GIS\Albtross.pdf": CreateProcess error=2, The system cannot find the file specified
at java.lang.ProcessBuilder.start(Unknown Source)
at gis.GISconvert.main(GISconvert.java:16)
Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified
at java.lang.ProcessImpl.create(Native Method)
at java.lang.ProcessImpl.<init>(Unknown Source)
at java.lang.ProcessImpl.start(Unknown Source)
... 2 more
my input file is exits. when I m doing this in command prompt(dp.exe /InFile E:\L4_project\sample\GIS\Albtross.dxf /OutFile E:\L4_project\sample\GIS\Albtross.pdf) it works correctly.
does anybody know why is this exception is resulting?