请问/usr/java/jdk1.5/bin/java -DSmsCent -Xms128m -Xmx512m什么意思
我看服务器上有个启动程序的.sh文件,内容如题,我不明白的是 -DSmsCent是什么意思,有没有高人指点一下
[解决办法]
这个是设置内存的大小的吧。
[解决办法]
public class Test { public static void main(String[] args) throws Exception { System.out.println(System.getProperties().containsKey("test")); }}
[解决办法]
-xms is the start memory (at the VM start), -xmx is the maximum memory for the VM
Options that begin with -X are non-standard (not guaranteed to be supported on all VM implementations), and are subject to change without notice in subsequent releases of the JDK.
-DSmsCent
这个-D是option吧