0

「サンドボックス」内で許可されていない操作を実行できなければならない Java アプレットに取り組んでいます。Java アプレットにはすべての権限が必要です。現在、ローカル サーバーでアプレットを実行しています。

署名付きアプレットを作成するために自己証明書を使用しようとしましたが、うまくいきません。これを行う他の方法はありますか、または自己証明書を作成するための良いチュートリアルを知っていますか?

よろしくお願いします / H

4

1 に答える 1

0

That you are asking for (all permissions for unsigned applet) would be a security exploit.

If the applet shows something rather trivial, I would suggest to rewrite in JavaScript instead. HTML 5 provides now some increased capabilities like restricted local file system access.

If this is a serious program, may be much better to offer it as a standalone .jar application. That way you go around the browser actions that seem getting increasingly unstable and problematic, as long as Java applets are concerned.

于 2014-02-21T07:56:21.543 に答える