来自Win7问题的Java代码的MySQL mysqldump

时间:2012-05-24 07:09:58

标签: java mysql windows mysqldump runtime.exec

好的,我的Java应用程序无法使用Windows运行时环境执行mysqldump备份。我有捕获异常的打印输出代码,我看到没有抛出异常,在执行备份代码时表面看起来很好。

我还在命令行控制台中测试了mysqldump命令;它没有任何问题。

代码:

Runtime rt = Runtime.getRuntime();
try {
    Process pr = rt.exec("mysqldump -u test --password=pass lager > newBackup.sql");

} catch (IOException ex) {
     System.out.println("IO error Runtime.  "+ex.getMessage());
}

有谁知道为什么它不会转储/备份数据库?是否需要添加某些权限或其他内容(运行Windows 7)。

1 个答案:

答案 0 :(得分:0)

可能你可以查看这篇关于beetwen exec和命令行(http://www.javaworld.com/article/2071275/core-java/when-runtime-exec---won-t.html)的区别的文章。

在我这边,我尝试使用类似StreamGoggle捕获mysqldump --help命令输出的代码来查找来自javaworld的文章:

    public Main() {
    try {
        FileOutputStream fos = new FileOutputStream("c:/tmp/test.txt");
        Runtime rt = Runtime.getRuntime();
        Process proc = rt.exec("mysqldump --help");
        // any error message?
        StreamGobbler errorGobbler = new StreamGobbler(
                proc.getErrorStream(), "ERROR");

        StreamGobbler outputGobbler = new StreamGobbler(
                proc.getInputStream(), "OUTPUT", fos);

        errorGobbler.start();
        outputGobbler.start();

        int exitVal = proc.waitFor();
        System.out.println("ExitValue: " + exitVal);
        fos.flush();
        fos.close();
    } catch (Throwable t) {
        t.printStackTrace();
    }
}