wangliang 1 год назад
Родитель
Сommit
4480f7bd3e

+ 1 - 1
distributed-print-business/src/main/java/com/qmth/distributed/print/business/backup/MySQLDatabaseBackup.java

@@ -171,7 +171,7 @@ public class MySQLDatabaseBackup {
         sysConfigQueryWrapper.lambda().eq(SysConfig::getSchoolId, schoolId);
         List<SysConfig> sysConfigList = sysConfigService.list(sysConfigQueryWrapper);
 
-        String cmdarray[] = {"mysql -h" + this.host + " -P" + this.port + " -u" + this.username + " -p" + this.password + " " + this.databaseName, "source " + file.getPath()};
+        String cmdarray[] = {"mysql -h" + this.host + " -P" + this.port + " -u" + this.username + " -p" + this.password + " " + this.databaseName, "source " + file.getAbsolutePath()};
         Runtime runtime = Runtime.getRuntime();
         Process process = null;
         try {