- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为许多程序制作一个基于文本的启动器。我正在使用Runtime.getRuntime().exec("path//to//file.exe"))
方法。
程序会运行,它总是会运行,但有些程序会表现得很奇怪,或者无法找到那里的关键 .dll 文件。其他人在运行时文本困惑等。正如你所看到的,这些都是复杂的游戏,并且使用了许多我不理解的引擎。谢谢!
《死亡空间 3》:屏幕黑屏,但游戏运行。仅显示似乎无法正常工作
MW3:TeknoMW3.exe 无法找到 teknomw3.dll,即使它们位于同一文件夹中(并且正常启动它可以使其运行良好)。
无尽的空间:文本显示很奇怪。 Exit 是 %getuserexit% 或类似于每个应该且通常显示文本的空间的东西。仅出现在主菜单上。
细胞 split Blaclist:目录正确,找不到指定的文件。我会解决这个问题。
生化奇兵 1:直接崩溃(可能又是由于 .dll 问题,但我实际上不知道)
《生化奇兵 2》:从未运行。文件已执行但未运行。
public class Main {
static int launcherNum = 14;
static Launchers launchers[] = new Launchers[launcherNum];
static Launchers assassinsCreed3 = new Launchers("G://Games//ROMS//Assassins Creed III//AC3SP.exe", "Assassians Creed III (AC3)");
static Launchers bioshock = new Launchers("G://Games//ROMS//Bioshock//Builds//Release//Bioshock.exe", "Bioshock");
static Launchers bioshock2 = new Launchers("G://Games//ROMS//Bioshock 2//SP//Builds//Binaries//Bioshock2.exe", "Bioshock 2");
static Launchers bioshock3 = new Launchers("G://Games//ROMS//Bioshock Infinite//Binaries//Win32//BioShockInfinite.exe", "Bioshock Infinite");
static Launchers borderlands2 = new Launchers("G://Games//ROMS//Borderlands 2//Binaries//Win32//Borderlands2.exe", "Borderlands 2");
static Launchers mw3 = new Launchers("G://Games//ROMS//Call of Duty- Modern Warfare 3//TeknoMW3.exe", "Call of Duty: Modern Warefare 3 (MW3)");
static Launchers deadSpace3 = new Launchers("G://Games//ROMS//Dead Space 3//deadspace3.exe", "Dead Space 3");
static Launchers endlessSpace = new Launchers("G://Games//ROMS//Endless Space//EndlessSpace.exe", "Endless Space");
static Launchers prototype2 = new Launchers("G://Games//ROMS//PROTOTYPE 2//Prototype2.exe", "Prototype 2");
static Launchers leagueOfLegends = new Launchers("G://Games//ROMS//lol.launcher.exe", "League of Legends");
static Launchers rct3 = new Launchers("G://Games//ROMS//RCT3//RCT3plus.exe", "Rollercoaster Tycoon 3");
static Launchers splitSecond = new Launchers("G://Games//ROMS//Split Second//SplitSecond.exe", "Split Second");
static Launchers skyrim = new Launchers("G://Games//ROMS//The Elder Scrolls V Skyrim//TESV.exe", "The Elder Scrolls: Skyrim");
static Launchers tcSplinterCell = new Launchers("G://Games//ROMS//Tom Clancys Splinter Cell Blacklist//src//SYSTEM//Blacklist_DX11_game.exe", "Tom Clancy's: Splinter Cell Blacklist");
public static void initLauncher() {
//adds AC3
launchers[0] = assassinsCreed3;
//Adds all 3 Bioshocks. God its hard to write "Bioshock"
launchers[1] = bioshock;
launchers[2] = bioshock2;
launchers[3] = bioshock3;
//Adds Borderlands 2
launchers[4] = borderlands2;
//Adds MW3
launchers[5] = mw3;
//Adds Dead Space 3
launchers[6] = deadSpace3;
//Adds Endless Space
launchers[7] = endlessSpace;
//Adds Prototype 2
launchers[8] = prototype2;
//Adds League of Legends... yeah, I know.
launchers[9] = leagueOfLegends;
//Adds RCT3
launchers[10] = rct3;
//Adds Split Second
launchers[11] = splitSecond;
//Adds skyrim
launchers[12] = skyrim;
//Adds Splinter Cell
launchers[13] = tcSplinterCell;
}
public static void runLaunchers() {
boolean done = false;
String input1;
Scanner input = new Scanner(System.in);
while(done == false) {
System.out.println("Welcome to the Cracked Game Launcher, also know as CSteam. This is a product of the labors of ASIGTX. Do not redistribute.\n Ever");
System.out.println("Please select a game from our libraires.");
System.out.println();
for (Launchers l: launchers) {
if (l.launcherName != null) {
System.out.println(l.launcherName);
System.out.println();
}//end of if loop
}//end of for loop
input1 = input.nextLine();
switch (input1) {
case "Assassins Creed 3":
case "AC3":
launchers[0].launchEXE();
if (launchers[0].hasLaunched == true) {
done = true;
}//end of if
break;
case "Bioshock":
launchers[1].launchEXE();
if (launchers[1].hasLaunched == true) {
done = true;
}//end of if
break;
case "Bioshock 2":
launchers[2].launchEXE();
if (launchers[2].hasLaunched == true) {
done = true;
}//end of if
break;
case "Bioshock Infinite":
launchers[3].launchEXE();
if (launchers[3].hasLaunched == true) {
done = true;
}//end of if
break;
case "Borderlands 2":
launchers[4].launchEXE();
if (launchers[4].hasLaunched == true) {
done = true;
}//end of if
break;
case "MW3":
case "Call of Duty: Modern Warefare 3":
launchers[5].launchEXE();
if (launchers[5].hasLaunched == true) {
done = true;
}//end of if
break;
case "Dead Space 3":
launchers[6].launchEXE();
if (launchers[6].hasLaunched == true) {
done = true;
}//end of if
break;
case "Endless Space":
launchers[7].launchEXE();
if (launchers[7].hasLaunched == true) {
done = true;
}//end of if
break;
case "Prototype 2":
launchers[8].launchEXE();
if (launchers[8].hasLaunched == true) {
done = true;
}//end of if
break;
case "League of Legends":
launchers[9].launchEXE();
if (launchers[9].hasLaunched == true) {
done = true;
}//end of if
break;
case "Rollercoaster Tycoon 3":
launchers[10].launchEXE();
if (launchers[10].hasLaunched == true) {
done = true;
}//end of if
break;
case "Split Second":
launchers[11].launchEXE();
if (launchers[11].hasLaunched == true) {
done = true;
}//end of if
break;
case "The Elder Scrolls: Skyrim":
case "Skyrim":
launchers[12].launchEXE();
if (launchers[12].hasLaunched == true) {
done = true;
}//end of if
break;
case "Tom Clancy's: Splinter Cell Blacklist":
case "Splinter Cell Blacklist":
launchers[13].launchEXE();
if (launchers[13].hasLaunched == true) {
done = true;
}//end of if
break;
}//end of switch
}//end of while loop
}
public static void main(String[] args) {
initLauncher();
runLaunchers();
}//end of main
}//end of class
public class Launchers {
public boolean hasLaunched = false;
public String launcherName;
private String dir;
public Launchers(String dir, String namein) {
setName(namein);
this.dir = dir;
}//end of constructor
public void setName(String s) {
launcherName = s;
}//end of setname
public String getDir() {
return dir;
}
public void launchEXE() {
String runtimeName = launcherName;
try {
Runtime.getRuntime().exec( getDir() );
} catch (IOException e) {
System.out.println("Dir is invalid");
e.printStackTrace();
}
hasLaunched = true;
System.out.println(launcherName +" has launched!");
}//end of launchEXE
}
最佳答案
程序很可能对其执行上下文有一个期望。
从您的示例来看,每个程序很可能都是在您运行程序的同一上下文/执行位置中启动的,这意味着它们无法找到所需的库或资源。
不要直接使用 Runtime#exec
,而是尝试使用 ProcessBuilder
反而。这将允许您更改进程的执行位置。
例如...
String cmd = getDir();
File cmdFile = new File(cmd);
// Maybe check that the cmdFile.exists...;)
File parentFile = cmdFile.getParentFile();
ProcessBuilder pb = new ProcessBuilder(cmd);
pb.directory(parentFile);
pb.redirectError();
Process p = pb.start();
还建议读取进程的InputStream
,因为当您不这样做时,某些进程会感到不安;)
InputStream is = p.getInputStream();
// This simple reads the contents from the InputStream and discards it
// You could change it to actually dump the output if wanted ;)
while (is.read() != -1);
int exitValue = p.waitFor();
关于java - Runtime.getRuntime().exec ("path to file") 运行,但程序行为奇怪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18995821/
尝试使用一些自定义数据(-p 标志)调用 ping。由于我需要传递参数,因此使用接受字符串数组的 exec() 重载似乎很直观。它一直失败,所以我尝试了与一长串相同的精确输入,现在一切都很好。我不知道
在下面的例子中,Java中调用“php hello.php”的两种方法有什么区别? p1 对 p2? String[] commands; String command = "php hello.ph
我在编译程序时遇到的问题是java无法识别“.getRuntime()”方法。下面是我的代码: import java.lang.*; public class Temp {
我正在阅读有关如何在运行 android 2.2 的自定义设备(中文框)上不在 dalvik(例如,后台 native 进程)内运行的 android 中获取正在运行进程的 PID 的信息,似乎没有在
我在 Java 1.8 上调用 p = Runtime.getRuntime().exec(command)。该命令调用 bash 脚本如下: #!/bin/bash args=("$@") cat
Runtime.getRuntime().freeMemory() 返回空闲堆内存空间还是堆+非堆内存空间? 最佳答案 javadoc说: @return an approximation to th
我想在 java 程序中使用 Runtime.getRuntime().exec 完整的代码片段如下,但我的问题归结为当我在 Runtime.getRuntime().exec(command),但是
我正在我的程序中构建某种更新程序功能。当检测到更新时,程序应下载 updater.jar 并终止。之后,updater.jar 将下载该程序的新版本并删除旧版本。这就是我的主程序运行更新程序的方式:
当我在 Windows 命令提示符中运行此命令时,它会打开默认浏览器并加载相应的页面: START: http://google.com 我尝试使用下面的 Java 代码执行相同的操作,但收到错误消息
我试图在 java 中执行终端命令,但得到错误的结果(即使该命令正在执行)。当我将相同的命令粘贴到终端时,它会产生正确的输出。我猜测问题是由于重定向字符('')而发生的,但我还没有找到解决方案。我正在
我正在尝试让我的 java 程序从命令提示符运行 svn 命令,这会将日志写入 xml 文件。 这就是我想要它做的事情: Runtime.getRuntime().exec("cmd.exe /c s
我正在尝试通过Java将curl命令作为进程执行。当我执行它时,我根本没有得到任何输出。当我通过命令行执行相同的命令时,我得到了正确的输出。 URL 以 XML 形式返回输出。 这是我的 Java 程
我正在尝试将我编写的 2 个简单程序合并到一个 .jar 中。我将两个 .jars 打包成一个新的,并使用 Runtime.getRuntime().exec 方法来执行它们。 代码: public
我正在尝试从我的 java 应用程序运行 *.bat 文件(它能够运行多个命令并一一检索输出)。 我的目的是发送一个命令,读取输出,使用此输出作为第二个命令,然后再次检索输出。 为了实现这一目标,通过
我正在尝试计算此 stub 的运行时内存使用情况。这在 Eclipse 中工作正常,但是当我在 Linux 服务器上运行相同的代码时,它除了 0 之外不打印任何内容。服务器配置:64位,4核服务器,1
我发现以下代码使用 Runtime.getRuntime().exec 运行任意程序(例如 Notepad.exe )。 public class RuntimeDemo { public st
我创建了一个类来处理 Android 应用程序中的根命令,该类在大多数情况下都运行良好。我使用 Runtime.getRuntime().exec("su") 创建进程,然后使用 DataOutput
基本上,当我输入这些命令时手动打开终端,筛选程序可以运行并写入一个 .key 文件,但是当我尝试从我的程序中调用它时,没有任何内容被写入。 我是否正确使用了 exec() 方法?我查看了 API,但似
我在让 .getruntime.exec() 正常工作时遇到了一些问题。这是处理该部分的代码: while (line != null) { String name = line; Strin
我目前正在使用 Java 制作 Firefox 插件开发 GUI 工具。但是,当我尝试获取 .bat 的输出时,我陷入了困境。文件。 当我运行.bat时file using java 我可以看到输出,
我是一名优秀的程序员,十分优秀!