从Java程序运行MySQL命令行

时间:2015-03-26 14:44:02

标签: java mysql windows

我必须将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);
}

0 个答案:

没有答案