macos - 如何将一个jar包配置到java的环境变量/CLASSPATH?(不是一个工程的CLASSPATH)
PHP中文网
PHP中文网 2017-04-18 10:10:25
0
4
682
PHP中文网
PHP中文网

认证高级PHP讲师

reply all(4)
阿神

First of all, thank you for your enthusiastic answers, which inspired me how to search. The following is the answer found in stackoverflow, which successfully solved my problem.
If you want to make a certain set of JAR files (or .class files) available to every Java application on the machine, then your best bet is to add those files to /Library/Java/Extensions.

Or, if you want to do it for every Java application, but only when your Mac OS X account runs them, then use ~/Library/Java/Extensions instead.

刘奇

CLASSPATH=.;%JAVA_HOME%lib;%JAVA_HOME%libtools.jar
设置CLASSPATHEnvironment variables

巴扎黑

%JAVA_HOME%lib/xxx.jar

Peter_Zhu

CLASSPATH=$CLASSPATH: the directory where abc.jar is located; java...

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!