Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用我自己制作的类来扩展 Java,以便可以从 Java 小程序中使用它们。我尝试将 JAR 文件放到 lib 和 lib/ext 文件夹中,但它们仍然不是全局可见的。
为了让 Java 加载我的类,我还需要做些什么吗?
出于很多原因,您不应该将您的类放入 JRE 的 lib 文件夹中。其中之一是您不能在客户端机器上执行此操作,即您的用户的机器将通过他的网络浏览器运行您的小程序。
您必须在文件中的applet标记中提供正确的类路径。html
applet
html