Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to convert .dwg and .dwf files into .pdf format for my project using java. the conversion required to done using java progarm not using converter.

anybody have clue?

share|improve this question

1 Answer

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?

share|improve this answer
Notice one difference is that when you are running from Java you have spaces in the path, while running from command line you do not. – Romain Hippeau Jul 10 '11 at 17:39
thank you it is working now :) – dula Jul 26 '11 at 6:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.