gpt4 book ai didi

java - 通过 Java 从 Windows 命令提示符进入目录

转载 作者:行者123 更新时间:2023-11-30 07:50:33 25 4
gpt4 key购买 nike

通过 Java 在 Windows 命令提示符下运行某些命令时遇到了一些问题。我希望进入我的 system32 文件夹并运行某个文件,但它不会填充该命令。下面的代码段:

System.out.print("Press 1 for Normal or 2 for Keygen - " + client);
String mode = input.nextLine().trim();
if (mode.equals("1")) {
String command = "cmd /c start cmd.exe";
final String dosCommand = "cmd /c dir /s";
final String location = "C:\\WINDOWS\\system32";
Process child = Runtime.getRuntime().exec(command);
OutputStream out = child.getOutputStream();
out.write(dosCommand.getBytes());
out.flush();
out.write(location.getBytes());
out.close();
} else if (mode.equals("2")) {

} else {
System.out.println("Option not recognised");
}

最佳答案

您似乎陷入了代码的困境。尝试使用这个:

System.out.print("Press 1 for Normal or 2 for Keygen - " + client);
String mode = input.nextLine().trim();

if (mode.equals("1")) {
final String location = "C:\\WINDOWS\\system32";
Runtime rt = Runtime.getRuntime();
rt.exec("cmd.exe /c start dir /p", null, new File(location));
} else if (mode.equals("2")) {
} else {
System.out.println("Option not recognised");
}

以下是我在自己的计算机上运行此代码片段时发生的情况:

enter image description here

如果您想运行实际的程序,只需在对 Runtime.exec() 的调用中指定即可。例如,假设您想要启动一个窗口并打印出 Java 版本。执行此操作的命令是java -version,您可以使用这行代码:

rt.exec("cmd.exe /c start cmd /k java -version", null, new File(loc));

在这里,您会注意到我在命令中添加了一个额外的 cmd/k。即使程序完成运行后,这也会使窗口保持打开状态。

关于java - 通过 Java 从 Windows 命令提示符进入目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33387924/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com