|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
package com.ruoyi.record.controller;
|
|
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.nio.file.Files;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
|
@ -120,7 +122,7 @@ public class RecordBusbarTempController extends BaseController
|
|
|
|
|
// 获取配置文件中的路径application.yml的profile
|
|
|
|
|
String myPath = RuoYiConfig.getProfile();
|
|
|
|
|
// 构建文件的完整路径
|
|
|
|
|
String fileUrl = myPath + "/日志信息/红外热成像/" + filePath;
|
|
|
|
|
String fileUrl = myPath + "/日志信息/可见光图像/" + filePath;
|
|
|
|
|
// 创建文件对象
|
|
|
|
|
File file = new File(fileUrl);
|
|
|
|
|
// 检查文件是否存在
|
|
|
|
@ -129,17 +131,30 @@ public class RecordBusbarTempController extends BaseController
|
|
|
|
|
FileSystemResource resource = new FileSystemResource(file);
|
|
|
|
|
// 创建HttpHeaders对象,用于设置响应头
|
|
|
|
|
HttpHeaders headers = new HttpHeaders();
|
|
|
|
|
// 设置媒体类型为图片jpg格式
|
|
|
|
|
headers.setContentType(MediaType.parseMediaType("image/jpg"));
|
|
|
|
|
// 设置文件长度
|
|
|
|
|
headers.setContentLength(file.length());
|
|
|
|
|
// 返回包含文件资源的ResponseEntity对象
|
|
|
|
|
// 动态检测文件的MIME类型
|
|
|
|
|
try {
|
|
|
|
|
// 尝试获取文件的内容类型
|
|
|
|
|
String contentType = Files.probeContentType(file.toPath());
|
|
|
|
|
if (contentType != null) {
|
|
|
|
|
// 如果内容类型不为空,则设置到HTTP响应头中
|
|
|
|
|
headers.setContentType(MediaType.parseMediaType(contentType));
|
|
|
|
|
} else {
|
|
|
|
|
// 如果内容类型为空,则默认设置为图像类型
|
|
|
|
|
headers.setContentType(MediaType.parseMediaType("image/*"));
|
|
|
|
|
}
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
// 如果发生IO异常,则默认设置内容类型为图像类型
|
|
|
|
|
headers.setContentType(MediaType.parseMediaType("image/*"));
|
|
|
|
|
}
|
|
|
|
|
// 返回包含文件资源的响应实体
|
|
|
|
|
return ResponseEntity.ok()
|
|
|
|
|
.headers(headers)
|
|
|
|
|
.body(resource);
|
|
|
|
|
} else {
|
|
|
|
|
// 如果文件不存在,返回null(注释掉的代码是返回404状态)
|
|
|
|
|
/* return ResponseEntity.notFound().build(); */
|
|
|
|
|
return null;
|
|
|
|
|
// 如果文件不存在,返回404状态
|
|
|
|
|
return ResponseEntity.notFound().build();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -149,11 +164,11 @@ public class RecordBusbarTempController extends BaseController
|
|
|
|
|
* @return 如果文件存在,返回包含文件资源的响应实体;如果文件不存在,返回null(注释掉的代码是返回404状态)。
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/getThermalPhoto/{filePath}")
|
|
|
|
|
public ResponseEntity<FileSystemResource> getThermalPhoto(@PathVariable String filePath) {
|
|
|
|
|
public ResponseEntity<FileSystemResource> getThermalPhoto (@PathVariable String filePath) {
|
|
|
|
|
// 获取配置文件中的路径application.yml的profile
|
|
|
|
|
String myPath = RuoYiConfig.getProfile();
|
|
|
|
|
// 构建完整的文件路径
|
|
|
|
|
String fileUrl = myPath + "/日志信息/可见光图像/" + filePath;
|
|
|
|
|
String fileUrl = myPath + "/日志信息/红外热成像/" + filePath;
|
|
|
|
|
// 创建文件对象
|
|
|
|
|
File file = new File(fileUrl);
|
|
|
|
|
// 检查文件是否存在
|
|
|
|
@ -162,17 +177,30 @@ public class RecordBusbarTempController extends BaseController
|
|
|
|
|
FileSystemResource resource = new FileSystemResource(file);
|
|
|
|
|
// 创建HTTP头对象
|
|
|
|
|
HttpHeaders headers = new HttpHeaders();
|
|
|
|
|
// 设置媒体类型为图片jpg格式
|
|
|
|
|
headers.setContentType(MediaType.parseMediaType("image/jpg"));
|
|
|
|
|
// 设置文件长度
|
|
|
|
|
headers.setContentLength(file.length());
|
|
|
|
|
// 动态检测文件的MIME类型
|
|
|
|
|
try {
|
|
|
|
|
// 尝试获取文件的内容类型
|
|
|
|
|
String contentType = Files.probeContentType(file.toPath());
|
|
|
|
|
if (contentType != null) {
|
|
|
|
|
// 如果内容类型不为空,则设置到HTTP响应头中
|
|
|
|
|
headers.setContentType(MediaType.parseMediaType(contentType));
|
|
|
|
|
} else {
|
|
|
|
|
// 如果内容类型为空,则默认设置为图像类型
|
|
|
|
|
headers.setContentType(MediaType.parseMediaType("image/*"));
|
|
|
|
|
}
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
// 如果发生IO异常,则默认设置内容类型为图像类型
|
|
|
|
|
headers.setContentType(MediaType.parseMediaType("image/*"));
|
|
|
|
|
}
|
|
|
|
|
// 返回包含文件资源的响应实体
|
|
|
|
|
return ResponseEntity.ok()
|
|
|
|
|
.headers(headers)
|
|
|
|
|
.body(resource);
|
|
|
|
|
} else {
|
|
|
|
|
// 如果文件不存在,返回null(注释掉的代码是返回404状态)
|
|
|
|
|
/* return ResponseEntity.notFound().build(); */
|
|
|
|
|
return null;
|
|
|
|
|
// 如果文件不存在,返回404状态
|
|
|
|
|
return ResponseEntity.notFound().build();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|