我使用这三个步骤创建了一个 java 小程序,jar 文件。我编写了一个打开 Windows 计算器的代码。它可以使用 ide 或从文件夹打开。在获得许可后在浏览器上它不起作用。我的问题是什么
3个简单的步骤:
keytool -genkey -keystore myKeyStore -alias me
keytool -selfcert -keystore myKeyStore -alias me
jarsigner -keystore myKeyStore jarfile.jar me
这是我的代码
import java.applet.Applet;
public class Mi extends Applet {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
try {
Runtime.getRuntime().exec("cmd /c calc");
} catch(Exception exce){
/*handle exception*/
try {
Runtime.getRuntime().exec("cmd /c notepad");
} catch(Exception exc){
/*handle exception*/
}
}
}
}
这是使用的 HTML
<applet archive="mi.jar" code="Mi"></applet>