1

このコマンドを実行したい

D:/Projects/GDAL/ogr2ogr.exe -f "MapInfo File" D:/Projects/GDAL/r/output_test.tab PG:"host=localhost user=postgres password=123456 dbname=postgis" -sql "SELECT * from filedata WHERE num=1"

私はこれを試しました:

Process process = Runtime.getRuntime().exec(new String[]{"cmd.exe", "D:/Projects/GDAL/ogr2ogr.exe -f \"MapInfo File\" D:/Projects/GDAL/r/output_test.tab PG:\"host=localhost user=postgres password=123456 dbname=postgis\" -sql \"SELECT * from filedata WHERE num=1\""});

エラーはありませんが、何も起こっていません。私の間違いはどこですか?

4

3 に答える 3

4

これを読んでください:http ://www.javaworld.com/jw-12-2000/jw-1229-traps.htmlそして各提案を段階的に調べてください。

Process APIは、落とし穴で有名です。

于 2012-08-09T11:40:34.793 に答える
1

「/C」を追加する必要があります。

Process process = Runtime.getRuntime().exec(new String[]{"cmd.exe", "/c", "D:/Projects/GDAL/ogr2ogr.exe -f \"MapInfo File\" D:/Projects/GDAL/r/output_test.tab PG:\"host=localhost user=postgres password=123456 dbname=postgis\" -sql \"SELECT * from filedata WHERE num=1\""})
于 2012-08-09T11:49:16.610 に答える
0

戻り値を確認してみてください。

String command = ""; // Your command
Process installproc = installcommand.execute();

StringBuilder out = new StringBuilder();
StringBuilder err = new StringBuilder();

installproc.waitForProcessOutput(out, err);
if (out.length() > 0) System.out.println("out:\n$out".toString());
if (err.length() > 0) System.out.println("err:\n$err".toString());

if(installproc.exitValue() != 0) {
throw new Exception("");
}

これは、私がまったくテストしていない単なるサンプル コードです。

これにより、エラーの内容についてヒントが得られるはずです。

于 2012-08-09T11:53:48.540 に答える