|
@@ -22,6 +22,8 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.io.File;
|
|
|
import java.io.IOException;
|
|
|
+import java.net.URLEncoder;
|
|
|
+import java.nio.charset.StandardCharsets;
|
|
|
import java.text.ParseException;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
@@ -115,9 +117,9 @@ public class MqttServiceImpl implements MqttService {
|
|
|
public void sendPhotoMqtt() throws IOException, JpegProcessingException, ParseException, InterruptedException {
|
|
|
// NewFileBo newFile = FileUtil.getNewFilePath();
|
|
|
NewFileBo newFile = new NewFileBo();
|
|
|
- newFile.setMissionId(2418);
|
|
|
- newFile.setRecordId(1869);
|
|
|
- newFile.setPath("/data/autoUpload/photo/"+ "2418" + "/" + "1869");
|
|
|
+ newFile.setMissionId(2420);
|
|
|
+ newFile.setRecordId(1871);
|
|
|
+ newFile.setPath("/data/photo/"+ "2420" + "/" + "1871");
|
|
|
log.info("=====返回的最新的图片文件目录:" + newFile.toString());
|
|
|
File path = new File(newFile.getPath());
|
|
|
log.info("=====图片目录:" + path.getPath());
|
|
@@ -139,7 +141,10 @@ public class MqttServiceImpl implements MqttService {
|
|
|
PlanePhotoEntity planePhotoEntity = new PlanePhotoEntity();
|
|
|
planePhotoEntity.setId(IdUtil.getSnowflake().nextId());
|
|
|
// minio地址
|
|
|
- String minioPath = "nest/autoUpload/photo/"+newFile.getMissionId()+"/"+newFile.getRecordId()+"/"+file.getName();
|
|
|
+ String minioPath = "/nest/photo/"+newFile.getMissionId()+"/"+newFile.getRecordId()+"/"+file.getName();
|
|
|
+
|
|
|
+// String s = new String(minioPath.getBytes(StandardCharsets.UTF_8));
|
|
|
+// String encode = URLEncoder.encode(s, "UTF-8");
|
|
|
planePhotoEntity.setPath(minioPath);
|
|
|
planePhotoEntity.setPzName(planePhotoVo.getPZName());
|
|
|
String joined = String.join(",", planePhotoVo.getPVNames());
|