如何知道是Applet还是Application

发布于 2024-07-09 12:06:13 字数 390 浏览 6 评论 0原文

我在一个由应用程序和小程序使用的类中包含此代码。

static
{
    if (System.getProperty("os.name").startsWith("Windows"))
    {
        System.loadLibrary("extmapi");
    }
}

不幸的是,当小程序加载此代码时,我收到错误,因为它无法加载“extmapi”库。

为了避免这个错误,我需要知道我正在运行的代码是Applet还是应用程序,以便我可以这样做:

if (isApplet)
    return;
else
    //load library

如何知道我是否在Applet内运行?

I have this code inside a class that is used by an application and by an applet.

static
{
    if (System.getProperty("os.name").startsWith("Windows"))
    {
        System.loadLibrary("extmapi");
    }
}

Unfortunately, when the applet loads this code I get an error, because it can't load the "extmapi" library.

To avoid this error, I need to know if the code I'm running is an Applet or an application, so that I can do:

if (isApplet)
    return;
else
    //load library

How can I know if I'm running inside an Applet?

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

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

发布评论

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

评论(2

咿呀咿呀哟 2024-07-16 12:06:13

你不能捕获(安全?)异常吗?

Can't you just catch the (Security?) exception?

情场扛把子 2024-07-16 12:06:13

您的顶级容器将是 Applet 的一个实例。

if (thispanel instanceof Applet)

Your top-level container will be an instance of Applet.

if (thispanel instanceof Applet)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文