首页 > 编程语言 > 详细

java调用shell命令的两种方法

时间:2014-03-28 19:25:17      阅读:418      评论:0      收藏:0      [点我收藏+]

运行环境:centos6.5  eclipse

可以借鉴转码译文分析


public static void insert(){

        String pathshell="/home/wjx/spider/baidu/java.sh";
        //String cmd="sort /home/wjx/spider/baidu/SearchUrl_CSDN.txt | uniq >/home/wjx/spider/baidu/SearchUrl_CSDN_b.txt;sort /home/wjx/spider/baidu/SearchUrl_OSchina.txt | uniq >/home/wjx/spider/baidu/SearchUrl_OSchina_b.txt";
 
        Process ps;
        try {
        //ps = Runtime.getRuntime().exec(new String[]{"sh","-c",cmd});
        ps = Runtime.getRuntime().exec(pathshell);

       ps.waitFor();
       String path = "/home/wjx/spider/baidu/";
        File f = new File(path);
        String[] names = f.list(new FilenameFilter() {
            public boolean accept(File dir, String name) {
                return name.indexOf(".txt") != -1;// 等于-1,表示不存在
            }
        });
        for (String str : names) {
            if (str.endsWith("_b.txt"))
                //insert_b(path + str);
            if (str.endsWith("_v.txt"))
                ;
        }} catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }  

    }



"/home/wjx/spider/baidu/java.sh" 中的shell脚本:

sort /home/wjx/spider/baidu/SearchUrl_CSDN.txt | uniq >/home/wjx/spider/baidu/SearchUrl_CSDN_b.txt
sort /home/wjx/spider/baidu/SearchUrl_OSchina.txt | uniq >/home/wjx/spider/baidu/SearchUrl_OSchina_b.txt

java调用shell命令的两种方法,布布扣,bubuko.com

java调用shell命令的两种方法

原文:http://blog.csdn.net/w1242245/article/details/22316053

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!