r******r 发帖数: 700 | 2 public class Test {
public static void main(String[] args) throws IOException {
System.out.println("Test restart the application!");
restart();
}
private static void restart() throws IOException {
RuntimeMXBean mx = ManagementFactory.getRuntimeMXBean();
List jvmArgs = mx.getInputArguments();
String cp = mx.getClassPath();
List listArgs = new ArrayList();
listArgs.add("java");
... 阅读全帖 |