public class RunTimeTest{
public static void main(String[] args) throws Exception{
String f="系统计算器的路径";
Runtime r = Runtime.getRuntime();
r.exec("cmd /c start " + f);
}
}