matlab java类路径问题

发布于 2024-12-01 05:47:26 字数 715 浏览 1 评论 0原文

当我将类路径放入静态类路径(即将它们放入 classpath.txt 文件中)时,程序可以正常工作。当我动态添加它时,出现错误,无法在类路径中找到属性文件。

这是我所拥有的

javaaddpath('C:\exchsys\jars\exsystools.jar') javaaddpath('C:\exchsys\externaljars\log4j.jar') javaaddpath('C:\exchsys\externaljars\') javaaddpath('C:\apache-activemq-5.1.0\lib\commons-logging-1.1.jar')
javaaddpath('C:\apache-activemq-5.1.0\activemq-all-5.1.0.jar')

加上我的实际代码

这会导致以下错误: javax.naming.ConfigurationException:JMSUtilities.loadConfiguration():在类路径中找不到属性文件“/exsysjms.properties”。

它正在查找的文件位于通过此行添加的文件夹中

javaaddpath('C:\exchsys\externaljars\')

当我将相同的路径放入 classpath.txt 文件中时,它工作正常。有什么想法吗?

When I put classpaths into the static class path (ie put them in the classpath.txt file) program works. When I add it dynamically, I get an error that it can't find a properties file in the class path.

Here is what I have

javaaddpath('C:\exchsys\jars\exsystools.jar')
javaaddpath('C:\exchsys\externaljars\log4j.jar')
javaaddpath('C:\exchsys\externaljars\')
javaaddpath('C:\apache-activemq-5.1.0\lib\commons-logging-1.1.jar')
javaaddpath('C:\apache-activemq-5.1.0\activemq-all-5.1.0.jar')

plus my actual code

This leads to the following error:
javax.naming.ConfigurationException: JMSUtilities.loadConfiguration(): Properties file "/exsysjms.properties" not found in the classpath.

The file it is looking for is a in the folder added through this line

javaaddpath('C:\exchsys\externaljars\')

When I put the same paths into the classpath.txt file it works fine. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆头 2024-12-08 05:47:26

您遇到的问题涉及静态动态类路径这篇文章中显示了使用 ClassPathHacker.java以便动态加载java类。您还可以查看其他回复以获取更多信息。

Your experiencing issues concerning static vs dynamic classpath. A workaround for this issue is shown in this post by using ClassPathHacker.java in order to dynamically load java classes. You may check the other responses as well for further information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文