通过java实现mysql数据库备份与还原

这里写自定义目录标题

package com.limapay.utils.backupdatabase;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import org.junit.Test;



/**
 * @Date 2019年2月18日15:13:38
 * @author 杜丰铭
 *  数据库备份
 */
public class DataBaseUtils {
	 /** 
     * Java代码实现MySQL数据库导出 
     *  
     * @author GaoHuanjie 
     * @param hostIP MySQL数据库所在服务器地址IP 
     * @param userName 进入数据库所需要的用户名 
     * @param password 进入数据库所需要的密码 
     * @param savePath 数据库导出文件保存路径 
     * @param fileName 数据库导出文件文件名 
     * @param databaseName 要导出的数据库名 
     * @return 返回true表示导出成功,否则返回false。 
     */  
    public static boolean exportDatabaseTool(String hostIP, String userName, String password, String savePath, String fileName, String databaseName) throws InterruptedException {  
        File saveFile = new File(savePath);  
        if (!saveFile.exists()) {// 如果目录不存在  
            saveFile.mkdirs();// 创建文件夹  
        }  
        if(!savePath.endsWith(File.separator)){  
            savePath = savePath + File.separator;  
        }  
          
        PrintWriter pw = null;  
        BufferedReader bufferedReader = null;  
        try {  
            pw = new PrintWriter(new OutputStreamWriter(new FileOutputStream(savePath + fileName), "utf8"));  
            Process process = Runtime.getRuntime().exec(" mysqldump -h" + hostIP + " -u" + userName + " -p" + password + " --set-charset=UTF8 " + databaseName);  
            InputStreamReader inputStreamReader = new InputStreamReader(process.getInputStream(), "utf8");  
            bufferedReader = new BufferedReader(inputStreamReader);  
            String line;  
            while((line = bufferedReader.readLine())!= null){  
                pw.println(line);  
            }  
            pw.flush();  
            if(process.waitFor() == 0){//0 表示线程正常终止。  
                return true;  
            }  
        }catch (IOException e) {  
            e.printStackTrace();  
        } finally {  
            try {  
                if (bufferedReader != null) {  
                    bufferedReader.close();  
                }  
                if (pw != null) {  
                    pw.close();  
                }  
            } catch (IOException e) {  
                e.printStackTrace();  
            }  
        }  
        return false;  
    }  
    
    
    /**
     * @param filepath 数据库备份的脚本路径
     * @param ip IP地址
     * @param database 数据库名称
     * @param userName 用户名
     * @param password 密码
     * @return
     */
    public static boolean recover(String filepath,String ip,String database, String userName,String password) {
    

        String stmt1 = "mysqladmin -h "+ip+" -u "+userName+" -p"+password+" create "+database;

        String stmt2 = "mysql -h "+ip+" -u "+userName+" -p "+password+" "+database+" < " + filepath;

        String[] cmd = { "cmd", "/c", stmt2 };

        try {
            Runtime.getRuntime().exec(stmt1);
            Runtime.getRuntime().exec(cmd);
            System.out.println("数据已从 " + filepath + " 导入到数据库中");
        } catch (IOException e) {
            e.printStackTrace();
            return false;
        }
        return true;
    }
    @Test
    public void test() throws IOException{
    	//System.out.println(recover("D:\\backup_database_2019_02_19_11_57_16.sql", "localhost", "mofujinfu", "root", "root"));
    	System.out.println(restore("localhost", "root", "root", "mofujinfu", "D:\\backup_database_2019_02_19_11_57_16.sql"));;
    	/*Runtime runtime = Runtime.getRuntime();
    	Process process = runtime.exec("mysql -hlocalhost -uroot -proot --set-charset=UTF-8 mofujinfu < D:/backup_database_2019_02_19_11_57_16.sql");
    	
    	OutputStream os = process.getOutputStream();
    	System.out.println(os==null);*/
    }
    
    public static boolean restore(String url,String user,String password,String databaseName,String path) {
    	System.out.println("mysql -h"+url+" -u"+user+" -p"+password+" --default-character-set=utf8 "
                            + databaseName);
        try {
            Runtime runtime = Runtime.getRuntime();
            Process process = runtime
                    .exec("mysql -h"+url+" -u"+user+" -p"+password+" --default-character-set=utf8 "
                            + databaseName);
            OutputStream outputStream = process.getOutputStream();
            FileInputStream fis = new FileInputStream(path);
            InputStreamReader isr = new InputStreamReader(fis, "utf-8");
            BufferedReader br = new BufferedReader(isr);
            String str = null;
            StringBuffer sb = new StringBuffer();
            while ((str = br.readLine()) != null) {
                sb.append(str + "\r\n");
            }
            str = sb.toString();
            OutputStreamWriter writer = new OutputStreamWriter(outputStream,"utf-8");
            writer.write(str);
            writer.flush();
            if(writer!=null){
            	writer.close();
            }
            
            if(br!=null){
            	br.close();
            }
            if(isr!=null){
            	isr.close();
            }
            if(fis!=null){
            	fis.close();
            }
            if(outputStream!=null){
            	outputStream.close();
            }
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        } 
        return true;
    }
}
  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
Java中使用Spring MVC实现数据库备份可以通过以下步骤实现: 1. 配置数据库连接信息:在Spring MVC的配置文件中,配置数据库的连接信息,包括数据库的URL、用户名和密码。 2. 创建备份文件夹:在服务器上创建一个用于存储数据库备份文件的文件夹。 3. 编写备份方法:在Spring MVC的控制器中,编写一个备份数据库的方法。可以使用Java的Runtime类来执行命令行操作,调用数据库备份命令将数据库备份到指定的文件夹中。 4. 编写恢复方法:同样在控制器中,编写一个恢复数据库的方法。通过调用数据库的恢复命令,将备份文件中的数据还原数据库中。 5. 配置路由:在Spring MVC的配置文件中,配置备份和恢复方法的路由信息,使其可以通过URL访问到。 下面是一个示例代码: ```java @Controller @RequestMapping("/database") public class DatabaseController { @RequestMapping("/backup") public void backupDatabase() { try { // 创建备份文件夹 File backupFolder = new File("/path/to/backup/folder"); if (!backupFolder.exists()) { backupFolder.mkdirs(); } // 执行备份命令 String command = "mysqldump -u username -p password database > /path/to/backup/folder/backup.sql"; Process process = Runtime.getRuntime().exec(command); int exitValue = process.waitFor(); if (exitValue == 0) { System.out.println("Database backup successful."); } else { System.out.println("Database backup failed."); } } catch (Exception e) { e.printStackTrace(); } } @RequestMapping("/restore") public void restoreDatabase() { try { // 执行恢复命令 String command = "mysql -u username -p password database < /path/to/backup/folder/backup.sql"; Process process = Runtime.getRuntime().exec(command); int exitValue = process.waitFor(); if (exitValue == 0) { System.out.println("Database restore successful."); } else { System.out.println("Database restore failed."); } } catch (Exception e) { e.printStackTrace(); } } } ``` 请注意,上述代码中的`/path/to/backup/folder`应替换为实际的备份文件夹路径,`username`、`password`和`database`应替换为实际的数据库连接信息。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值