码迷,mamicode.com
首页 > 数据库 > 详细

数据库备份自动执行dat文件

时间:2018-09-20 14:16:01      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:static   import   exec   dex   ring   gyb   int   str   exception   

package com.gyb;
import java.io.IOException;
import java.io.InputStream;

public class InvokeBat4 {
    public void runbat(String batName) {
        String cmd = "cmd /k start D:\\new\\news.bat";// pass
        try {
            Process ps = Runtime.getRuntime().exec(cmd);
            InputStream in = ps.getInputStream();
            int c;
            while ((c = in.read()) != -1) {
                System.out.print(c);// 如果你不需要看输出,这行可以注销掉
            }
            in.close();
            ps.waitFor();
        } catch (IOException ioe) {
            ioe.printStackTrace();
        }
        catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        System.out.println("child thread donn");
    }

    public static void main(String[] args) {
        InvokeBat4 test1 = new InvokeBat4();
        test1.runbat("news");
        System.out.println("main thread");
    }
}

数据库备份自动执行dat文件

标签:static   import   exec   dex   ring   gyb   int   str   exception   

原文地址:https://www.cnblogs.com/l611/p/9680482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!