标签:java ar for sp on c amp r 服务器
有时候,服务器为了兼容好多程序,会有多个版本的jdk。当默认的jdk不符合我们需求的时候,只需要在编译的时候根据自己的版本编译好,然后在运行的时候指定对应的jre即可
#!/bin/sh
programdir="IntelligentComment.jar"
num=$#
temp=$CLASSPATH
libs=./lib/*
append(){
temp=$temp":"$1
}
for file in $libs; do
append $file
done
export CLASSPATH=$temp:.:$programdir
export CLASSPATH=$temp:.:$programdir:/usr/local/java/jdk1.7.0_67/lib/*jar
export LANG=zh_CH
nohup /usr/local/java/jdk1.7.0_67/bin/java -classpath $CLASSPATH cn.sme.pq.IntelligentComment intelligence.xml &
标签:java ar for sp on c amp r 服务器
原文地址:http://www.cnblogs.com/whatisant/p/3988706.html