如何知道是Applet还是Application
我在一个由应用程序和小程序使用的类中包含此代码。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能捕获(安全?)异常吗?
Can't you just catch the (Security?) exception?
您的顶级容器将是 Applet 的一个实例。
Your top-level container will be an instance of Applet.