如何使用java在命令提示符中更改路径

时间:2015-12-04 11:52:19

标签: java automation command-prompt

import java.io.Console;
import java.io.File;
import java.io.IOException;
import java.util.concurrent.Executor;

import com.jacob.com.LibraryLoader;

import autoitx4java.AutoItX;

public class SilentInstallation {

    public static void main(String[] args) throws IOException, InterruptedException {

        String[] cmd = { "C:\\WINDOWS\\system32\\cmd.exe", "/c", "start" };
        try {
            Runtime runtime = Runtime.getRuntime();
            Process p = runtime.exec(cmd);
        }

        catch (java.io.IOException exception) {
            System.out.println("Caught IOException: " + exception.getMessage());

        }

    }
}

这是我使用java运行命令提示符的代码。但是我面临的问题是我无法使用java代码在命令提示符中更改路径。

由于此代码在Automation中使用,因此java中的任何命令或方法都可用于更改命令提示符中的路径。

我还使用ProcessBuilder来更改目录路径。 任何建议.....

1 个答案:

答案 0 :(得分:0)

这应该足够了:

Process p = ...
p.getOutputStream().write("cd d:\\/r/n".getBytes());