类未找到异常
当我尝试运行与 Java DB 交互的 Java 类时,出现以下错误。
我尝试加载驱动程序:
Class.forName("org.apache.derby.jdbc.EmbeddedDriver");
在库中,“derby.jar”确实存在。我正在使用 NetBeans IDE 6.0。
有人能帮我解决这个问题吗?
I'm getting the following error when I try to run a Java class which interacts with Java DB.
I try loading driver with :
Class.forName("org.apache.derby.jdbc.EmbeddedDriver");
In libraries, "derby.jar" do exist. I'm using NetBeans IDE 6.0.
Could anyone help me to solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您添加
derby.jar
到类路径中。Make sure you added
derby.jar
to the classpath.首先,打开 jar(使用 winrar 或类似的应用程序)以确保该类确实存在,在正确的路径下!
如果是,那么,我的朋友,您遇到了类路径问题 - 将 jar 位置添加到项目的类路径中 - 通常您可以在日志/输出窗格中看到运行程序时使用的类路径,以便您可以确保它包含在内。
祝你好运 !
丹尼
First, open the jar (with winrar or similar app) to make sure that the class is actually there, under the correct path !
If it is, then, my friend, you have a classpath issue - add the jar location to the project's classpath - usually you can see the classpath used where running the program in the log/ouput pane so you can make sure it's included.
Good luck !
Danny