我有一个只有1个按钮的小型应用程序。我要它做的是检查按下按钮时进程是否正在运行。如果不是,请执行x。
到目前为止,这是我的拙劣代码。我知道它只包含按钮,单击和其他。我真的很空白。
public class toggle {
public static void main(String[] args) {
Display myDisplay = new Display();
Shell myShell = new Shell(myDisplay);
myShell.setText("uTorrent Toggle");
myShell.setBounds(120, 120, 220, 120);
myShell.setLayout(new FillLayout());
final Button Start = new Button(myShell, SWT.PUSH);
Start.setText("Start uTorrent");
Start.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent event) {
Start.setText("Kill uTorrent");
try {
Runtime.getRuntime().exec("/bin/bash -c \"utorrent start\"");
} catch (IOException e) {
e.printStackTrace();
}
}
});
myShell.open();
while (!myShell.isDisposed()) {
if (!myDisplay.readAndDispatch()) myDisplay.sleep();
}
myDisplay.dispose();
}
}
最佳答案
要检查某个进程是否正在运行,可以根据需要使用“ ps -efw”的输出或不同的参数。
关于java - 如果进程正在运行,请执行此操作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8197431/