When this code executes, the file specified in the redirect does not get created. Why not?
public class MyDdlSql {
public static void main(String[] args) {
try {
Runtime.getRuntime().exec("mysqldump -uroot -psuri biztime >D:data.sql");
} catch (IOException e) {
e.printStackTrace();
}
}
}