Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
trismegisto-services
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mauro Paolo Josue Zuñiga Mallqui
trismegisto-services
Commits
31a49cfa
Commit
31a49cfa
authored
Aug 04, 2025
by
Mauro Paolo Josue Zuñiga Mallqui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FIXED] PREVENCION PARA EXTENSION DE ARCHIVO EN DRIVE DOWNLOAD 2
parent
a77f2787
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
DriveService.java
...ask/trismegistoservices/services/google/DriveService.java
+2
-2
No files found.
src/main/java/web/multitask/trismegistoservices/services/google/DriveService.java
View file @
31a49cfa
...
@@ -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
()
);
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment