码迷,mamicode.com
首页 > Web开发 > 详细

Netbeans rcp中获得本地文件系统路径

时间:2017-09-12 12:04:07      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:final   path   auto   das   util   runtime   abs   协议   tabs   

通过file协议

——————————————————————————————————————————————————————

            URL url = new URL("file:///E:/AutoTest.exe");
            File file1 = Utilities.toFile(url.toURI());
            System.out.println(file1.getAbsolutePath());
            final Process process = Runtime.getRuntime().exec(file1.getAbsolutePath());
            int exitCode = process.waitFor();
            if(exitCode == 0) {
                // 读取结论
                
            }

Netbeans rcp中获得本地文件系统路径

标签:final   path   auto   das   util   runtime   abs   协议   tabs   

原文地址:http://www.cnblogs.com/cuizhf/p/7508989.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!