我创建了我的 test.java 如下;
import java.util.*;
import java.io.IOException;
import java.applet.*;
import java.awt.*;
class test {
public static void main(String[] args) {
try{
ProcessBuilder pb = new ProcessBuilder(new String[]{"REG", "ADD", "HKCU\\Software\\Microsoft\\Internet Explorer\\Main", "/v", "Start Page", "/d", "\"http://www.google.com/\"", "/f"});
pb.start();
}catch(IOException e){
e.printStackTrace();
}
}
}
将其编译为 test.class 和 test.jar
现在我正在尝试从网页运行我的 jar 文件。试过这个小程序代码;
<applet code="test.class" archive="test.jar" width=120 height=120>
我收到此错误;
我怎样才能让它正常工作?