public static void main(String[] args){
String f="../MyApp/phone.txt"; //绝对路径:E:/我的文档/我的文档/java/MyApp/phone.txt //注意是'/'而不是'\'
try{
Runtime r=Runtime.getRuntime();
r.exec("cmd /c start"+f);
}catch(Exception e){}
}
}
String f="../MyApp/phone.txt"; //绝对路径:E:/我的文档/我的文档/java/MyApp/phone.txt //注意是'/'而不是'\'
try{
Runtime r=Runtime.getRuntime();
r.exec("cmd /c start"+f);
}catch(Exception e){}
}
}
本文转自 xhinkerx 51CTO博客,原文链接:http://blog.51cto.com/xhinker/134162,如需转载请自行联系原作者