私の WGET コマンドは 32BIT JRE では動作しませんが、64BIT バージョンでは正常に動作しています。何か案は?
java.io.IOException: Cannot run program "wget": CreateProcess error=2, cannot find file
String command = "wget --quiet -O \""+props.getProperty("xmlFolder")+""+rs.getString("software")+".xml\" \"ftp://"+props.getProperty("ftpUser")+":"+props.getProperty("ftpPasswort")+"@"+rs.getString("xmlPfad")+"\"";
System.out.println(command);
Process p = Runtime.getRuntime().exec(command);
p.waitFor();