码迷,mamicode.com
首页 > 编程语言 > 详细

在Java通过python命令执行DataX任务

时间:2020-03-02 00:41:45      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:rgs   process   exec   链接   tar   buffered   detail   通过   color   

 

本文链接https://blog.csdn.net/qq_37552993/article/details/80235010?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task

 

package test;

import java.io.BufferedReader;
import java.io.File;
import java.io.InputStreamReader;

public class TestDatax {
     public static void main(String[] args) {
            try {
                System.out.println("start");
                
                String windowcmd = "cmd /c python2 datax.py F:\\json.json";
               
                //.exec("你的命令",null,new File("datax安装路径"));
                Process pr = Runtime.getRuntime().exec(windowcmd,null,new File("D:\\DataX\\datax\\bin"));
                BufferedReader in = new BufferedReader(new InputStreamReader(pr.getInputStream()));
                String line = null;
                while ((line = in.readLine()) != null) {
                    System.out.println(line);
                }
                in.close();
                pr.waitFor();
                System.out.println("end");
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

    }

 

在Java通过python命令执行DataX任务

标签:rgs   process   exec   链接   tar   buffered   detail   通过   color   

原文地址:https://www.cnblogs.com/zlj843767688/p/12393123.html

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