private static String driverName = "com.mysql.jdbc.Driver";
public static void main(String[] args)
throws SQLException {
try {
Class.forName(driverName);
} catch (ClassNotFoundException e) {
e.printStackTrace();
System.exit(1);
}
Connection con = DriverManager.getConnection("jdbc:mysql://192.168.5.148/ifms", "root", "123456");
String sql = "SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = ‘ifms‘ AND TABLE_TYPE =‘BASE TABLE‘";
Statement stmt = (Statement) con.createStatement();
ResultSet res = stmt.executeQuery(sql);
while (res.next()) {
String tableName = res.getString(1);
stmt = (Statement) con.createStatement();
if(tableName.contains("`")) continue;
ResultSet rs = stmt.executeQuery("show create table `"+tableName+"`");
while(rs.next()){
File file = new File("C:\\Users\\hq\\Desktop\\sql\\mysql\\b_tables\\"+tableName+".sql");
OutputStreamWriter osw = null;
try {
osw = new OutputStreamWriter(new FileOutputStream(file));
osw.write(rs.getString(2));
System.out.println(tableName+"导出成功");
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
osw.flush();
osw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
原文:http://www.cnblogs.com/sx2zx/p/6246426.html