日期:2014-05-20 浏览次数:20799 次
public static void main(String[] args) {
JFrame frame = new JFrame("打开程序");
FlowLayout flowLayout = new FlowLayout(FlowLayout.CENTER);
flowLayout.setHgap(20);
flowLayout.setVgap(20);
JButton buttonComfirm = new JButton("打开酷狗");
buttonComfirm.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try {
Runtime.getRuntime()
.exec("E:\\Program Files\\YouKu\\iKu\\iKuPlayer.exe");
} catch (Exception ex) {
ex.printStackTrace();
}
}
});
frame.add(buttonComfirm);
frame.setBounds(0, 0, 300, 300);
frame.setVisible(true);
frame.setResizable(false);
}