您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
本篇文章给大家分享的是有关如何在Java中导入MySQL数据库,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
Java主要应用于:1. web开发;2. Android开发;3. 客户端开发;4. 网页开发;5. 企业级应用开发;6. Java大数据开发;7.游戏开发等。
首先新建名为test的数据库;
其次执行下面Java代码:
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("数据库导入失败!!!"); } } }
以上就是如何在Java中导入MySQL数据库,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。