Java
0
Вклад в тег
btnCalculator.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
// TODO Auto-generated method stub
if (!isWinCalc){
try {
Runtime.getRuntime().exec("C:/Windows/System32/calc.exe");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
isWinCalc = true;
}
else {
try {
Runtime.getRuntime().exec("taskkill /F /IM Calculator.exe");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
isWinCalc = false;
}
}
});