1

これらの 3 つの手順を使用して 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>
4

1 に答える 1