我们需要手动设置 -Xmax 和 -Xmin 环境变量,但我想从 java 代码中设置这些变量。有没有办法用java代码设置这些变量。?谢谢。
问问题
173 次
2 回答
3
您是否需要从正在运行的 Java 进程中设置这些设置?我不相信这是可能的。但是,您可以在调用 Java 程序的子进程上设置它们,例如通过ProcessBuilder。
ProcessBuilder pb = new ProcessBuilder("myCommand", "-Xmax", value);
pb.directory(new File("dir"));
Process p = pb.start();
于 2012-06-27T18:15:16.033 回答
0
我得到了这个问题的解决方案: -
public static void main(String[] args) {
Properties prop = new Properties();
try {
String path=System.getenv("APPDATA");
path=path.substring(0,path.lastIndexOf('\\')+1)+"LocalLow\\Sun\\Java\\Deployment\\deployment.properties";
System.err.println(path);
prop.load(new FileInputStream(path));
String jreIndex = null;
Enumeration enuKeys = prop.keys();
while (enuKeys.hasMoreElements()) {
String key = (String) enuKeys.nextElement();
String value = prop.getProperty(key);
if(value.contains("1.6.0_26")){
String[] st2 = key.split("\\.");
if(st2.length==5){
jreIndex = st2[3];
}
}
}
//SystemSettings SysConfigsettings = new SystemSettings();
if(jreIndex != null){
// if (SysConfigsettings.getValue(SystemSettings.JRE_HEAP_SIZE))
{
prop.setProperty("deployment.javaws.jre."+jreIndex+".args", "-Xmx1024m");
}
}
prop.store(new FileOutputStream(path), "UpdatedHeapSize");
System.out.println("First : "+prop.getProperty("deployment.javaws.jre.0.args"));
} catch (Exception e) {
e.printStackTrace();
}
}
于 2012-10-17T11:30:26.067 回答