Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ioc_sixiang_license
Project
Project
Details
Activity
Releases
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
zengtianlai3
ioc_sixiang_license
Commits
92f11bdf
Commit
92f11bdf
authored
Jun 13, 2022
by
zengtianlai3
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改下载的excel格式
parent
ca00070b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
31 deletions
+45
-31
ResourceContrller.java
...ava/iot/sixiang/license/controller/ResourceContrller.java
+3
-3
ResourceManager.java
...in/java/iot/sixiang/license/resource/ResourceManager.java
+42
-28
No files found.
license/src/main/java/iot/sixiang/license/controller/ResourceContrller.java
View file @
92f11bdf
package
iot
.
sixiang
.
license
.
controller
;
import
iot.sixiang.license.resource.ResourceM
n
nager
;
import
iot.sixiang.license.resource.ResourceM
a
nager
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
...
...
@@ -16,13 +16,13 @@ import java.io.IOException;
public
class
ResourceContrller
{
@Autowired
ResourceM
nnager
resourceMn
nager
;
ResourceM
anager
resourceMa
nager
;
@GetMapping
(
"/download"
)
public
void
downloadWorkHourRecordTemplate
(
HttpServletResponse
response
,
@RequestParam
(
value
=
"userId"
)
int
userId
)
{
try
{
resourceM
n
nager
.
downloadDeviceInfoExcle
(
response
,
userId
);
resourceM
a
nager
.
downloadDeviceInfoExcle
(
response
,
userId
);
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
...
...
license/src/main/java/iot/sixiang/license/resource/ResourceM
n
nager.java
→
license/src/main/java/iot/sixiang/license/resource/ResourceM
a
nager.java
View file @
92f11bdf
...
...
@@ -6,7 +6,6 @@ import iot.sixiang.license.service.ResourceService;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.poi.hssf.usermodel.*
;
import
org.apache.poi.ss.usermodel.HorizontalAlignment
;
import
org.apache.poi.ss.util.CellRangeAddress
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Component
;
...
...
@@ -17,7 +16,7 @@ import java.util.List;
@Component
@Slf4j
public
class
ResourceM
n
nager
{
public
class
ResourceM
a
nager
{
@Autowired
ResourceService
resourceService
;
...
...
@@ -33,68 +32,83 @@ public class ResourceMnnager {
// 修改后
String
name
=
new
String
(
filename
.
getBytes
(
"utf-8"
),
"iso-8859-1"
);
response
.
setHeader
(
"Content-Disposition"
,
"attachment; filename = "
+
name
);
String
sheetName
=
"用户设备信息表"
;
//第一步创建workbook
wb
=
new
HSSFWorkbook
();
//第二步创建sheet
HSSFSheet
sheet
=
wb
.
createSheet
();
wb
.
setSheetName
(
0
,
sheetName
);
sheet
.
setDefaultColumnWidth
(
20
);
//第三步创建行row:添加表头0行
//4个参数依次为:开始行,结束行,开始列,结束列
sheet
.
addMergedRegion
(
new
CellRangeAddress
(
0
,
0
,
0
,
5
));
HSSFRow
row
=
sheet
.
createRow
(
0
);
HSSFCell
cell1
=
row
.
createCell
(
0
);
cell1
.
setCellValue
(
"用户设备信息表"
);
//设置表格格式
HSSFCellStyle
style
=
wb
.
createCellStyle
();
style
.
setAlignment
(
HorizontalAlignment
.
CENTER
);
//居中
HSSFRow
row1
=
sheet
.
createRow
(
1
);
//第三步创建行row:添加表头0行
HSSFRow
row
=
sheet
.
createRow
((
short
)
0
);
//第四步创建单元格
HSSFCell
cell
=
row
1
.
createCell
(
0
);
//第一个单元格
HSSFCell
cell
=
row
.
createCell
((
short
)
0
);
//第一个单元格
cell
.
setCellValue
(
"用户"
);
//设定值
cell
.
setCellStyle
(
style
);
//内容居中
cell
=
row
1
.
createCell
(
1
);
//第二个单元格
cell
=
row
.
createCell
((
short
)
1
);
//第二个单元格
cell
.
setCellValue
(
"密码"
);
cell
.
setCellStyle
(
style
);
cell
=
row
1
.
createCell
(
2
);
//第三个单元格
cell
=
row
.
createCell
((
short
)
2
);
//第三个单元格
cell
.
setCellValue
(
"公司名称"
);
cell
.
setCellStyle
(
style
);
cell
=
row
1
.
createCell
(
3
);
//第四个单元格
cell
=
row
.
createCell
((
short
)
3
);
//第四个单元格
cell
.
setCellValue
(
"应用名称"
);
cell
.
setCellStyle
(
style
);
cell
=
row
1
.
createCell
(
4
);
//第五个单元格
cell
=
row
.
createCell
((
short
)
4
);
//第五个单元格
cell
.
setCellValue
(
"appKey"
);
cell
.
setCellStyle
(
style
);
cell
=
row
1
.
createCell
(
5
);
//第六个单元格
cell
=
row
.
createCell
((
short
)
5
);
//第六个单元格
cell
.
setCellValue
(
"SN"
);
cell
.
setCellStyle
(
style
);
//第五步插入数据
List
<
ResourceVo
>
resourceList
=
resourceService
.
getResource
(
userId
);
for
(
int
i
=
0
;
i
<
resourceList
.
size
();
i
++)
{
ResourceVo
resourceVo
=
resourceList
.
get
(
i
);
//创建行
row
=
sheet
.
createRow
(
i
+
2
);
row
=
sheet
.
createRow
(
(
short
)(
i
+
1
)
);
//创建单元格并且添加数据
row
.
createCell
(
0
).
setCellValue
(
resourceVo
.
getUserName
());
row
.
createCell
(
1
).
setCellValue
(
resourceVo
.
getPassword
());
row
.
createCell
(
2
).
setCellValue
(
resourceVo
.
getCompany
());
row
.
createCell
(
3
).
setCellValue
(
resourceVo
.
getAppName
());
row
.
createCell
(
4
).
setCellValue
(
resourceVo
.
getAppKey
());
row
.
createCell
(
5
).
setCellValue
(
resourceVo
.
getSn
());
cell
=
row
.
createCell
((
short
)
0
);
//第一个单元格
cell
.
setCellValue
(
resourceVo
.
getUserName
());
cell
.
setCellStyle
(
style
);
cell
=
row
.
createCell
((
short
)
1
);
// 第二个单元格
cell
.
setCellValue
(
resourceVo
.
getPassword
());
cell
.
setCellStyle
(
style
);
cell
=
row
.
createCell
((
short
)
2
);
// 第三个单元格
cell
.
setCellValue
(
resourceVo
.
getCompany
());
cell
.
setCellStyle
(
style
);
cell
=
row
.
createCell
((
short
)
3
);
// 第四个单元格
cell
.
setCellValue
(
resourceVo
.
getAppName
());
cell
.
setCellStyle
(
style
);
cell
=
row
.
createCell
((
short
)
4
);
// 第五个单元格
cell
.
setCellValue
(
resourceVo
.
getAppKey
());
cell
.
setCellStyle
(
style
);
cell
=
row
.
createCell
((
short
)
5
);
// 第六个单元格
cell
.
setCellValue
(
resourceVo
.
getSn
());
cell
.
setCellStyle
(
style
);
}
sheet
.
autoSizeColumn
((
short
)
0
);
//调整第一列宽度
sheet
.
autoSizeColumn
((
short
)
1
);
//调整第二列宽度
sheet
.
autoSizeColumn
((
short
)
2
);
//调整第三列宽度
sheet
.
autoSizeColumn
((
short
)
3
);
//调整第四列宽度
sheet
.
autoSizeColumn
((
short
)
4
);
//调整第五列宽度
sheet
.
autoSizeColumn
((
short
)
5
);
//调整第六列宽度
wb
.
write
(
os
);
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
...
...
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