好的,我的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)。
最佳答案
也许您可以看一下这篇关于beetwen exec和命令行(http://www.javaworld.com/article/2071275/core-java/when-runtime-exec---won-t.html)的区别的文章。
在我这边,我尝试使用这段代码来捕获mysqldump --help命令的输出,并使用Class StreamGoggle查找来自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();
}
}
关于java - 从Win7问题上的Java代码获取MySQL mysqldump,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10732784/