如何使用mysql连接器java 5.1.12连接java和mysql
我还是一个java初学者。我不知道如何将下载的文件导入到我的 java 类中。 它的路径如下:
E:\Users\user\Downloads\mysql-connector-java-5.1.12
我不知道如何处理从 mysql 站点下载的文件中提取的文件,以连接我的 java 应用程序和 mysql 数据库。
我正在使用 Netbeans 6.8。并且还安装了wampserver。
我已经退房了 这个:Java:连接到 MySQL 时遇到问题 和这个: 连接到 MySQL 数据库
但他们似乎没有答案如何使用 mysql 站点上的 mysql java 连接器文件。 请帮忙,谢谢。
I'm still a beginner in java. I dont have any idea on how to import the files that I have downloaded into my java class.
Its in this path:
E:\Users\user\Downloads\mysql-connector-java-5.1.12
I don't know what to do with the files I extracted from the file that I have downloaded in the mysql site for me to connect my java application and mysql database.
I'm using Netbeans 6.8. And have also installed wampserver.
ive already check out
This: Java: Trouble connecting to MySQL
and this: Connecting to a MySQL database
But they don't seem to have answers on how to make use of the mysql java connector file from mysql site.
Please help, thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在项目资源管理器中右键单击您的项目,然后单击属性。
从那里前往图书馆 ->添加 jar 文件,然后转到您要导入的任何 .jar 文件。
这应该将 jar 文件添加到您的项目类路径中。
Right click on your project in your project explorer and click on properties.
From there go to libraries -> add jar file then go to whatever .jar file you want to import.
That should add the jar file to your project classpath.
您已经在此处找到的第二个问题的答案是很好的参考!此外,您只需确保 mysql 连接器库位于类路径上。这应该就是全部了。
This answer to the second question you already found here on SO is a good reference! In addition you simply have to make sure, that the mysql connector library is on the classpath. That should be all.