javaweb怎么导入mysql

javaweb怎么导入mysql

javaweb导入mysql的示例代码:

import java.io.File;

import java.io.IOException;

/**

MySQL数据库导入

*

* @author GaoHuanjie

*/

public class MySQLDatabaseImport {

/**

* Java实现MySQL数据库导入

*

* @author GaoHuanjie

* @param hostIP MySQL数据库所在服务器地址IP

* @param userName 数据库用户名

* @param password 进入数据库所需要的密码

* @param importFilePath 数据库文件路径

* @param sqlFileName 数据库文件名

* @param databaseName 要导入的数据库名

* @return 返回true表示导入成功,否则返回false。

*/

public static boolean importDatabase(String hostIP, String userName, String password, String importFilePath, String sqlFileName, String databaseName) {

File saveFile = new File(importFilePath);

if (!saveFile.exists()) {// 如果目录不存在

saveFile.mkdirs();// 创建文件夹

}

if (!importFilePath.endsWith(File.separator)) {

importFilePath = importFilePath + File.separator;

}

StringBuilder stringBuilder=new StringBuilder();

stringBuilder.append("mysql").append(" -h").append(hostIP);

stringBuilder.append(" -u").append(userName).append(" -p").append(password);

stringBuilder.append(" ").append(databaseName);

stringBuilder.append(" <").append(importFilePath).append(sqlFileName);

try {

Process process = Runtime.getRuntime().exec("cmd /c "+stringBuilder.toString());//必须要有“cmd /c ”

if (process.waitFor() == 0) {// 0 表示线程正常终止。

return true;

}

} catch (IOException e) {

e.printStackTrace();

} catch (InterruptedException e) {

e.printStackTrace();

}

return false;

}

public static void main(String[] args) throws InterruptedException {

if (importDatabase("172.16.0.127", "root", "123456", "D:\\backupDatabase", "2014-10-14.sql", "GHJ")) {

System.out.println("数据库导入成功!!!");

} else {

System.out.println("数据库导入失败!!!");

}

}

}



我们的服务
专业提供中小企业网站建设.公司网站建设.外贸网站建设.营销型网站建设,响应式网站建设,商城网站定制,手机网站,微信小程序定制.php应用开发服务,公司成立于2014年,8年专注网站建设,秉承“以客户为根本,以科技为核心,以市场为导向”的经营理念;服务电话13714666846(微信同号)

声明:本站所有作品(图文、音视频)均由用户自行上传分享,或互联网相关知识整合,仅供网友学习交流,若您的权利被侵害,请联系 管理员 删除。

本文链接:http://news.ew35.com/