[FIXED] PREVENCION PARA EXTENSION DE ARCHIVO EN DRIVE DOWNLOAD 2

parent a77f2787
...@@ -85,7 +85,7 @@ public class DriveService implements IDriveService { ...@@ -85,7 +85,7 @@ public class DriveService implements IDriveService {
try{ try{
nameFile = System.getProperty("java.io.tmpdir") + "/" + uudi + "." + file.getName().split("\\.")[1]; nameFile = System.getProperty("java.io.tmpdir") + "/" + uudi + "." + file.getName().split("\\.")[1];
}catch(Exception e){ }catch(Exception e){
nameFile = System.getProperty("java.io.tmpdir") + "/" + uudi; nameFile = System.getProperty("java.io.tmpdir") + "/" + uudi + ".pdf";
} }
java.io.File tempFile = new java.io.File(nameFile); java.io.File tempFile = new java.io.File(nameFile);
try (FileOutputStream fos = new FileOutputStream(tempFile)) { try (FileOutputStream fos = new FileOutputStream(tempFile)) {
...@@ -101,7 +101,7 @@ public class DriveService implements IDriveService { ...@@ -101,7 +101,7 @@ public class DriveService implements IDriveService {
return ResponseEntity.ok().body( return ResponseEntity.ok().body(
new JSONObject() new JSONObject()
.put("base64", base64String) .put("base64", base64String)
.put("file_name", file.getName()) .put("file_name", nameFile)
.put("status", true) .put("status", true)
.put("message", "OK").toMap() .put("message", "OK").toMap()
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment