感言在前:时隔好久没有更新博客园了,忙东忙西也没忙出个什么之所以然来。回首过去的几个月,只能用“疲倦”两个字来形容,时间飞逝地很快,有苦也有乐,有酸也有甜。
好了,矫情的话就说到这。百忙之中,我还是记得抽些时间来更博。
class ExecCmd {
    public static void main(String args[]) {
        Runtime run = Runtime.getRuntime();
        Process process = null;
        try {
            process = run.exec("notepad"); // 执行cmd命令
            process.waitFor();
        } catch (Exception e) {
            System.out.println("Error executing notepad.");
        }
        System.out.println("Notepad returned " + process.exitValue());
    }
}
原文:http://www.cnblogs.com/caidupingblogs/p/5747240.html