用java程序执行文件

public class ExecuteFile {
 
   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){}
    }
}



本文转自 xhinkerx 51CTO博客,原文链接:http://blog.51cto.com/xhinker/134162,如需转载请自行联系原作者
上一篇:LevelDB:Cache源码精读——缓存


下一篇:第62天:HTTP 入门