public class PDFToSWF {
public static void main(String[] args) throws IOException{
Process process = Runtime.getRuntime().exec("d:\\Program Files\\SWFTools\\pdf2swf.exe -o \"e:\\test.swf\" -t \"e:\\flexBinding.pdf\"");
System.out.println("sucess!!!");
}
}