Java - 设置类路径
我的示例应用程序告诉我:
No 'qtjambi-deployment.xml' found in classpath, loading
libraries via 'java.library.path'
我希望我的应用程序使用 qtjambi-deployment.xml
,但遗憾的是在 IntelliJ IDEA 10.5
中找不到适当的设置。
有人可以帮助我吗?
My sample application tells me:
No 'qtjambi-deployment.xml' found in classpath, loading
libraries via 'java.library.path'
I wish for my application to use the qtjambi-deployment.xml
, but unfortunately can't find the appropriate setting in IntelliJ IDEA 10.5
.
Could someone help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以右键单击 IntelliJ 项目中的任何目录,选择“将目录标记为...”,然后选择“源根目录”。该director文件夹的颜色将从黄色变为蓝色; IntelliJ 认为所有这些目录都在您的 CLASSPATH 中。
You can right click on any directory in your IntelliJ project, select "Mark Directory As...", and choose "Source Root". That director folder will change color from yellow to blue; IntelliJ considers all those directories to be in your CLASSPATH.
qtjambi-deployment.xml
文件位于qtjambi-win-msvc-.jar
中。将此包添加到您的类路径中,您的构建问题将得到解决。我希望)qtjambi-deployment.xml
file is situated inqtjambi-win<architecture>-msvc<year>-<vertion>.jar
. Add this package to your classpath and your building problem will be solved. I hope)