以下のコードをご覧ください
Runtime rt = Runtime.getRuntime();
rt.exec("cmd /c start");
String[] cmd = {"LogParser", "Select top 10 * into c:\temp\test9.csv from application" };
rt.exec(cmd);
コマンドウィンドウを開きますが、開いた後に文字列が渡されません。このコードが文字列をコマンド ウィンドウに配置しない理由を誰か教えてもらえますか?