我必须将mysql数据库架构(结构+数据)转储到文本文件中。 我使用下面的命令,但没有导出数据,调用函数时没有错误...
public void dumpFullDB() throws IOException {
String[] cmd = new String[]{"mysqldump ",
"test > C:\\Users\\Andrei\\Desktop\\Tema Alcatel\\IntApp\\schema.sql"
};
Runtime.getRuntime().exec(cmd);
}