Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
common
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
曲欣亮
common
Commits
aa917bd1
Commit
aa917bd1
authored
Feb 18, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
7b1650c8
Pipeline
#88
failed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
ExcelUtil.java
src/main/java/com/egolm/common/ExcelUtil.java
+7
-1
No files found.
src/main/java/com/egolm/common/ExcelUtil.java
View file @
aa917bd1
...
...
@@ -15,7 +15,9 @@ import java.util.List;
import
java.util.Map
;
import
org.apache.poi.hssf.usermodel.HSSFCell
;
import
org.apache.poi.hssf.usermodel.HSSFCellStyle
;
import
org.apache.poi.hssf.usermodel.HSSFDateUtil
;
import
org.apache.poi.hssf.usermodel.HSSFRichTextString
;
import
org.apache.poi.hssf.usermodel.HSSFRow
;
import
org.apache.poi.hssf.usermodel.HSSFSheet
;
import
org.apache.poi.hssf.usermodel.HSSFWorkbook
;
...
...
@@ -80,6 +82,8 @@ public class ExcelUtil {
public
static
void
excel
(
OutputStream
os
,
Object
[][]
objs
,
Integer
[]
widths
)
{
try
{
HSSFWorkbook
wb
=
new
HSSFWorkbook
();
HSSFCellStyle
bodyStyle
=
wb
.
createCellStyle
();
bodyStyle
.
setWrapText
(
true
);
HSSFSheet
sheet
=
wb
.
createSheet
(
"sheet1"
);
if
(
widths
!=
null
)
{
for
(
int
i
=
0
;
i
<
widths
.
length
;
i
++)
{
...
...
@@ -88,6 +92,7 @@ public class ExcelUtil {
}
}
}
for
(
int
row_index
=
0
;
row_index
<
objs
.
length
;
row_index
++)
{
HSSFRow
row
=
sheet
.
createRow
(
row_index
);
for
(
int
cell_index
=
0
;
(
row_index
<
objs
.
length
&&
cell_index
<
objs
[
row_index
].
length
);
cell_index
++)
{
...
...
@@ -98,7 +103,8 @@ public class ExcelUtil {
if
(
type
==
Date
.
class
)
{
cell
.
setCellValue
(
DateUtil
.
format
((
Date
)
obj
));
}
else
{
cell
.
setCellValue
(
String
.
valueOf
(
obj
));
cell
.
setCellStyle
(
bodyStyle
);
cell
.
setCellValue
(
new
HSSFRichTextString
(
String
.
valueOf
(
obj
)));
}
}
}
...
...
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