系统类加载器的名称
Java applet 在 Java 生态系统中会遇到哪些(默认)系统类加载器?
例如,我在我的机器上看到了 sun.misc.Launcher$AppClassLoader
和 sun.plugin2.applet.Applet2ClassLoader
。小程序还会遇到哪些其他情况?
What (default) system classloaders can a Java applet expect to encounter in the Java ecosystem?
For instance, I have seen sun.misc.Launcher$AppClassLoader
and sun.plugin2.applet.Applet2ClassLoader
on my machine. What others can an applet expect to encounter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过提供 -verbose 选项找到了其中的一些。
few of them I found by giving -verbose option.
这个问题很大程度上依赖于 JVM。您无法真正知道给定的 JVM 将使用哪些类加载器。
坦率地说,您的应用程序也不应该太关心这个,特别是当您用完小程序时。
This question is very much JVM-dependent. You can't really know which class loaders a given JVM will use.
Frankly speaking, your application shouldn't be too concerned with this either, especially if your running out of an applet.