我制作了这个运行记事本的小 Java 代码:
import java.io.IOException;
public class pad {
public static void main(String[] args) throws IOException, InterruptedException {
execute();
}
private static void execute() throws IOException, InterruptedException {
Process exec = Runtime.getRuntime().exec("notepad.exe");
exec.waitFor();
}
}
该代码在构建到 .jar 文件之前和之后都可以正常工作,但是当从 html 页面运行时,它会给我一个 java.lang.reflect.invocationtargetexception 错误,这是 html 源代码:
<applet code="pad.class"
archive="not.jar"
width=400 height=400>
</applet>
请注意,我还是 Java 新手,感谢您的帮助。