IDE 没有正确的类路径
我正在使用 BlueJ for java,尽管已加载外部 .jar 文件且程序编译良好,但它运行时不会出现“无法初始化库”的情况。
然而,当我将其编译成 .jar 文件本身(并且将我需要的库 .jar 放在同一文件夹中)时,它运行良好。
如何更改 BlueJ IDE 的类路径?
I'm using BlueJ for java, and despite having loaded in my external .jar files and the program compiling fine, It does not run with a "Failed to initialize library".
When I compile it into a .jar file itself however (and have the library .jars I need in the same folder) It runs fine.
How do I change the classpath of my BlueJ IDE?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经切换到 NetBeans,它立即起作用了。 BlueJ 似乎不会显式设置您的类路径,并且手动执行此操作的方法(如果存在)会被混淆。 BlueJ 缺乏通用的运行按钮以及此功能,在我看来,这使得它不适合用于编程。
I've switched to NetBeans, it worked right away. It seems BlueJ will not set your classpath explicitly, and the means to do so manually, if they exist, are obfuscated. BlueJ lacked a general run button as well as this capability, which in my mind makes it ill suited to program with.