我的 WGET 命令在我的 32 位 JRE 下不起作用,但在 64 位版本上它运行得很好。有任何想法吗?
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();