2

Javaプロセス経由でsbtを実行しています。実行時に、この子プロセス(Java)とやり取りしたい。たとえば、「show full-classpath」を実行したいとします。それはすべてMACで動作し、テストされています! しかし、同じソースコードは Windows では動作しません! 理由を知っている人はいますか?また、「\n」、「\n\n」、および「\r\n」を追加してコマンドを拡張しようとしました。コードは次のとおりです。

public Process makeProcess(String dir, String model) throws IOException {
        List<String> command = new ArrayList<String>();
        command.add("scala.bat");
        Process process = null;
        final ProcessBuilder pb = new ProcessBuilder();
        pb.command(command);

        pb.redirectErrorStream(true);

        process = pb.start();
        if (process == null) {
            return null;
        }
        final BufferedReader stream = new BufferedReader(new InputStreamReader(
                process.getInputStream(), Charset.defaultCharset()));

        OutputStream o = process.getOutputStream();

        Thread t = new Thread(new ConsoleListener(stream));
        t.start();



        try {
            Thread.sleep(5000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        System.out.println("executing....");
                o.write("show full-classpath\n".getBytes());

        o.flush();
                o.close();
        return process;
    }

    public static void main(String[] args) throws Exception {
        ProcessControl control = new ProcessControl();
        control.makeProcess(null,null);
    }

「cmd.exe」と「dir」をコマンドとして実行すると、Windowsマシンでも動作するため、これまでのところ本当に混乱しています..

4

0 に答える 0