91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

javaweb怎么導入mysql

小新
184
2021-03-23 09:02:23
欄目: 云計算

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("數據庫導入失敗!!!");

}

}

}



0
清原| 申扎县| 临漳县| 河源市| 宜州市| 墨脱县| 马山县| 罗江县| 新巴尔虎右旗| 叙永县| 武强县| 板桥市| 鹿邑县| 基隆市| 当阳市| 绿春县| 兴安盟| 大庆市| 福泉市| 和硕县| 凤城市| 邳州市| 平潭县| 翁源县| 临颍县| 湘乡市| 栖霞市| 当阳市| 静安区| 连平县| 图们市| 石狮市| 高雄县| 乳源| 醴陵市| 阿尔山市| 缙云县| 波密县| 南澳县| 建宁县| 南江县|