Kaynağa Gözat

提交代码

KR0282 2 yıl önce
ebeveyn
işleme
c04d2414f3

+ 9 - 4
src/main/java/com/keystar/plane/inspection/service/impl/MqttServiceImpl.java

@@ -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());

+ 3 - 1
src/test/java/com/keystar/plane/inspection/PlaneInspectionApplicationTests.java

@@ -29,6 +29,7 @@ import java.io.File;
 import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.math.BigDecimal;
+import java.nio.charset.Charset;
 import java.util.*;
 import java.util.stream.Collectors;
 
@@ -324,6 +325,7 @@ class PlaneInspectionApplicationTests {
 
     @Test
     public void MJ4(){
-
+        System.out.println(System.getProperty("file.encoding"));
+        System.out.println(Charset.defaultCharset());
     }
 }