在Mac os上使用java程序设置mysql.jar的类路径时出现问题
我有一个java程序,我想在Mac操作系统上运行。
我在设置 jre 和 mysql.jar 的类路径时遇到问题。
如果我为“mysql-connector-1.15.0-bin.jar”设置类路径,它会显示“未定义方法 - main”异常
,如果我为“jre”设置类路径,它会显示“ClassNotFoundException - com.mysql.jdbc”。司机' 。
请帮助如何同时设置两个类路径。
I have a java program which I want to run on Mac os.
I have problem in setting classpath of jre and mysql.jar.
If I set classpath for 'mysql-connector-1.15.0-bin.jar', its displaying exception of 'undefined method - main'
and if I set classpath for 'jre', its displaying 'ClassNotFoundException - com.mysql.jdbc.Driver' .
Please help how to set both classpath at a time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
classpath 包含您的应用程序需要的所有 .class 文件,包括您编写的文件。使用 javac.exe 和 java.exe 上的
-classpath
选项将 MySQL JDBC JAR 和主类的路径放入类路径中。classpath has to all the .class files that your application needs, including the ones you write. Put the MySQL JDBC JAR and the path to your main class into classpath using the
-classpath
option on javac.exe and java.exe.您还可以在 JAR 的清单中指定类路径。它应该可以在 Mac OS 或 Windows 上运行。
You can also specify the classpath in your JAR's manifest. It should work on Mac OS or Windows.