さて、ProcessBuilder で実行している Python スクリプトがあります。すべてが正常に機能しています。私が抱えている問題は、Python スクリプトに引数を渡すたびに、Python スクリプトがunrecognized argumets
. しかし、正確なコマンドをコピーしてコマンド プロンプトに貼り付けると、問題なく動作します。何か助けはありますか?これが私が今持っているものの一般的な考えです:
ProcessBuilder builder = new ProcessBuilder("C:\Python33\" + "python.exe","-u", "C:\...\script.py", "--arg1 " + "argumentValue");
p = builder.start();