将 SQLite 驱动程序文件添加到我的 mac 上的 java 目录中?
我是一个新的 mac 用户,想知道如何将 jar 文件(SQLite sqlite_jni.dll 和 sqlite.jar)添加到系统 jre 文件中?对我来说,Windows 相当于进入 java 目录并将文件放入 bin 和 lib 文件夹中。
谢谢,抱歉,我没有更好地表达这个问题。
I am a new mac user and was wondering how I can add a jar file (the SQLite sqlite_jni.dll and sqlite.jar) to the systems jre files? the windows equivalent for me was to go in to the java directory and place the files in the bin and lib folder.
thanks and sorry i didn't phrase the question a little better.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mac 上的 Java 位于
/System/Library/Frameworks/JavaVM.framework/
中,但我认为这不是添加 jar 文件的好地方。当您编译和/或运行应用程序时,只需将所需的 jar 保留在类路径中即可。另外,您可以在.bash_profile|.bashrc
中添加CLASSPATH
env 变量,它将指向您需要的 jar。但我建议您将应用程序的设置保留在本地。Java on mac located in
/System/Library/Frameworks/JavaVM.framework/
, but I don't think it is a good place to add jar files. Just keep jars you need in classpath when you compile and/or run your application. Also, you can addCLASSPATH
env variable in your.bash_profile|.bashrc
which will point to the jars you need. But I recommend you to keep your settings locally for the application.