gpt4 book ai didi

Java 签名小程序无法在浏览器上运行

转载 作者:太空宇宙 更新时间:2023-11-04 07:42:00 25 4
gpt4 key购买 nike

我使用这三个步骤创建了一个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>

最佳答案

我之前在 html 中使用过带关键字或类似下面的小程序;

<applet code="mainclass.class" width="500" height="500">
my applet
</applet>

你能尝试一下吗

关于Java 签名小程序无法在浏览器上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15913221/

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