Merge remote-tracking branch 'origin/master'

master
heminjian502 2 years ago
commit f40e99611e

@ -717,7 +717,7 @@ public class AppController extends BaseController
@GetMapping("/version/info")
public AjaxResult queryVersionInformation(){
String localPath = RuoYiConfig.getAppInfoPath();
String file = FileUtils.readJsonFile(localPath + "appVersion.json");
String file = FileUtils.readJsonFile(localPath +"/" + "appVersion.json");
return AjaxResult.success(JSONObject.parseObject(file));
}
}

@ -347,7 +347,7 @@ public class FileUtils
* @return {@code String}
*/
public static String readJsonFile(String Filename) {
String jsonStr = "";
String jsonStr;
try {
File jsonFile = new File(Filename);
FileReader fileReader = new FileReader(jsonFile);
@ -362,8 +362,7 @@ public class FileUtils
jsonStr = sb.toString();
return jsonStr;
} catch (IOException e) {
e.printStackTrace();
return null;
throw new ServiceException(e.getMessage());
}
}
}

Loading…
Cancel
Save