appletviewer 中的 JApplet / JRE1.6.0_30 — getParameter(“someArg”) 上的 NullPointerException

发布于 2025-01-02 04:21:00 字数 727 浏览 2 评论 0原文

当我在这个非常简单的 JApplet 实例化中调用 getParameter() 时,为什么会收到 NullPointerException

public class TestPad extends javax.swing.JApplet {

    public static void main(String[] args) {
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                TestPad appletDefn = new TestPad();

                TestPad.sSomeParam = (String)appletDefn.getParameter("sSomeParam");

                appletDefn.init();

                appletDefn.start();
            }
        });
    }

    private static String sSomeParam = "sSomeArg";

}

没有安全策略文件,没有其他包,只有两个库: a) swing-layout-1.0.4.jar b) JDK-1.6(默认)

Why am I getting a NullPointerException when I call getParameter() in this very simple JApplet instantiation?

public class TestPad extends javax.swing.JApplet {

    public static void main(String[] args) {
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                TestPad appletDefn = new TestPad();

                TestPad.sSomeParam = (String)appletDefn.getParameter("sSomeParam");

                appletDefn.init();

                appletDefn.start();
            }
        });
    }

    private static String sSomeParam = "sSomeArg";

}

No security policy file, no other packages, and only two libraries:
a) swing-layout-1.0.4.jar
b) JDK-1.6 (default)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

计㈡愣 2025-01-09 04:21:00

Applet 类中该方法的实现:

 public String getParameter(String name) {
     return stub.getParameter(name);
 }

因此对 transient private AppletStub Stub 的方法调用会引发异常。
Applet 具有与普通应用程序不同的生命周期。我建议您看一下关于 Applet 的官方 Java 教程

The implementation of the method in the Applet class:

 public String getParameter(String name) {
     return stub.getParameter(name);
 }

So the method call on transient private AppletStub stub throws the exception.
Applets have an other lifecycle than a normal application. I suggest you to take a look at the official Java tutorials on Applets.

戏蝶舞 2025-01-09 04:21:00
  1. 该代码在此处的小程序查看器中运行时不会抛出 NPE。这对我来说并不奇怪,因为它会加载公共小程序类,然后调用 init()run()。它在任何时候都不会调用main(String[])
  2. 这让我得出这样的结论:您是通过调用 main(String[]) 来运行“小程序”,而不是使用小程序查看器。以这种方式运行导致 NPE,因为尚未设置和初始化小程序上下文/存根。这样做需要一些工作。
  1. That code throws no NPE when run in the applet viewer here. This is no surprise to me, since it would load the public applet class, then invoke init() and run(). At no time would it call the main(String[]).
  2. Which leads me to the conclusion that you are running the 'applet' by calling the main(String[]), not using the applet viewer. Running it that way will cause an NPE because there has been no applet context/stub set up and initialized. It takes some work to do so.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文