在Mac os上使用java程序设置mysql.jar的类路径时出现问题

发布于 2024-10-21 12:14:01 字数 243 浏览 2 评论 0原文

我有一个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 技术交流群。

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

发布评论

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

评论(2

小傻瓜 2024-10-28 12:14:01

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.

凤舞天涯 2024-10-28 12:14:01

您还可以在 JAR 的清单中指定类路径。它应该可以在 Mac OS 或 Windows 上运行。

Class-Path: mysql-connector-1.15.0-bin.jar
Main-Class: your.Program

You can also specify the classpath in your JAR's manifest. It should work on Mac OS or Windows.

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