Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
sentinel
Project
Project
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
曲欣亮
sentinel
Commits
27a081d2
Commit
27a081d2
authored
Mar 08, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
6462d97f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
ExportServiceImpl.java
...va/com/egolm/film/api/service/impl/ExportServiceImpl.java
+6
-6
No files found.
src/main/java/com/egolm/film/api/service/impl/ExportServiceImpl.java
View file @
27a081d2
...
...
@@ -600,11 +600,11 @@ public class ExportServiceImpl implements ExportService {
stringVars
.
put
(
"25,1"
,
filmExt
.
getCast
());
stringVars
.
put
(
"27,1"
,
filmExt
.
getProduction_en
());
stringVars
.
put
(
"29,1"
,
filmExt
.
getWorld_sales
());
stringVars
.
put
(
"30,1"
,
ExportConstant
.
resolutionopts
.
get
(
String
.
valueOf
(
filmExt
.
getResolution
())));
stringVars
.
put
(
"31,1"
,
ExportConstant
.
aspectopts
.
get
(
String
.
valueOf
(
filmExt
.
getAspect_ratio
())));
stringVars
.
put
(
"32,1"
,
ExportConstant
.
soundopts
.
get
(
String
.
valueOf
(
filmExt
.
getSound_format
())));
stringVars
.
put
(
"33,1"
,
ExportConstant
.
frameopts
.
get
(
String
.
valueOf
(
filmExt
.
getFrame_rate
())));
stringVars
.
put
(
"34,1"
,
ExportConstant
.
kdmopts
.
get
(
String
.
valueOf
(
filmExt
.
getKdm
())));
stringVars
.
put
(
"30,1"
,
ExportConstant
.
resolutionopts
.
get
(
String
.
valueOf
(
filmExt
.
getResolution
())
.
trim
()
));
stringVars
.
put
(
"31,1"
,
ExportConstant
.
aspectopts
.
get
(
String
.
valueOf
(
filmExt
.
getAspect_ratio
())
.
trim
()
));
stringVars
.
put
(
"32,1"
,
ExportConstant
.
soundopts
.
get
(
String
.
valueOf
(
filmExt
.
getSound_format
())
.
trim
()
));
stringVars
.
put
(
"33,1"
,
ExportConstant
.
frameopts
.
get
(
String
.
valueOf
(
filmExt
.
getFrame_rate
())
.
trim
()
));
stringVars
.
put
(
"34,1"
,
ExportConstant
.
kdmopts
.
get
(
String
.
valueOf
(
filmExt
.
getKdm
())
.
trim
()
));
stringVars
.
put
(
"5,3"
,
filmExt
.
getSynopsis_cn
());
stringVars
.
put
(
"12,3"
,
filmExt
.
getSynopsis_en
());
stringVars
.
put
(
"20,5"
,
filmExt
.
getDirector_biography_cn
());
...
...
@@ -613,7 +613,7 @@ public class ExportServiceImpl implements ExportService {
stringVars
.
put
(
"23,5"
,
filmExt
.
getDirector_en
());
for
(
String
key
:
stringVars
.
keySet
())
{
String
value
=
stringVars
.
get
(
key
);
value
=
value
==
null
?
""
:
value
;
value
=
value
==
null
?
""
:
value
.
trim
()
;
String
[]
row_col_ary
=
key
.
split
(
","
,
2
);
Integer
row
=
Integer
.
valueOf
(
row_col_ary
[
0
]);
Integer
col
=
Integer
.
valueOf
(
row_col_ary
[
1
]);
...
...
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