您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關如何在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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。