1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
public class VboxService {
public VboxService(){
this.serviceStop();
this.serviceStart();
}
public static void main(String[] args) {
VboxService_ServiceManagement.serviceInit();
//VboxService v = new VboxService();
}
public void serviceStart() {
try {
Runtime.getRuntime().exec("C:/Program Files/Sun/xVM VirtualBox/VBoxManage.exe startvm LAMSRV05 --type vrdp");
} catch (IOException ex) {
Logger.getLogger(VboxService.class.getName()).log(Level.SEVERE, null, ex);
}
}
public void serviceStop() {
try {
Runtime.getRuntime().exec("C:/Program Files/Sun/xVM VirtualBox/VBoxManage.exe controlvm LAMSRV05 savestate");
} catch (IOException ex) {
Logger.getLogger(VboxService.class.getName()).log(Level.SEVERE, null, ex);
}
}
void reinit() {
this.serviceStop();
this.serviceStart();
}
} |
Partager