- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Spring 实现excel及pdf导出表格示例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
整理文档,搜刮出一个Spring 实现excel及pdf导出表格的代码,稍微整理精简一下做下分享.
excel 导出:
- package light.mvc.utils.excel;
- import java.util.Date;
- import java.util.List;
- import java.util.Map;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import org.apache.poi.hssf.usermodel.HSSFCell;
- import org.apache.poi.hssf.usermodel.HSSFCellStyle;
- import org.apache.poi.hssf.usermodel.HSSFFont;
- import org.apache.poi.hssf.usermodel.HSSFSheet;
- import org.apache.poi.hssf.usermodel.HSSFWorkbook;
- import org.springframework.web.servlet.view.document.AbstractExcelView;
- import light.mvc.pageModel.sys.Log;
- import light.mvc.utils.Tools;
- public class ExcelView extends AbstractExcelView{
- private HSSFSheet sheet;
- private HSSFCell cell;
- @Override
- protected void buildExcelDocument(Map<String, Object> model,
- HSSFWorkbook workbook, HttpServletRequest request,
- HttpServletResponse response) throws Exception {
- // TODO Auto-generated method stub
- Date date = new Date();
- String filename = Tools.date2Str(date, "yyyyMMddHHmmss");
- String title_content = (String) model.get("title_content");
- response.setContentType("application/octet-stream");
- response.setHeader("Content-Disposition", "attachment;filename="+filename+".xls");
- sheet = workbook.createSheet(title_content);
- List<String> titles = (List<String>) model.get("titles");
- int len = titles.size();
- HSSFCellStyle headerStyle = workbook.createCellStyle(); //标题样式
- headerStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);
- headerStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
- HSSFFont headerFont = workbook.createFont(); //标题字体
- headerFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
- headerFont.setFontHeightInPoints((short)11);
- headerStyle.setFont(headerFont);
- short width = 20,height=25*20;
- sheet.setDefaultColumnWidth(width);
- for(int i=0; i<len; i++){ //设置标题
- String title = titles.get(i);
- cell = getCell(sheet, 0, i);
- cell.setCellStyle(headerStyle);
- setText(cell,title);
- }
- sheet.getRow(0).setHeight(height);
- HSSFCellStyle contentStyle = workbook.createCellStyle(); //内容样式
- contentStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);
- String type = (String) model.get("type");
- if ("log".equals(type)){
- List<Log> logList = (List<Log>) model.get("list");
- logExcel(logList, contentStyle);
- }
- }
- /**
- *
- * @Title: logExcel
- * @Description: 日志导出
- * @param @param logList
- * @param @param contentStyle
- * @return void
- * @throws
- */
- public void logExcel(List<Log> logList, HSSFCellStyle contentStyle){
- int logCount = logList.size();
- if (logList != null && logCount > 0){
- for(int i=0; i<logCount; i++){
- Log log = logList.get(i);
- String loginname = log.getLoginname();
- cell = getCell(sheet, i+1, 0);
- cell.setCellStyle(contentStyle);
- setText(cell,loginname);
- String username = log.getName();
- cell = getCell(sheet, i+1, 1);
- cell.setCellStyle(contentStyle);
- setText(cell,username);
- String IP = log.getIp();
- cell = getCell(sheet, i+1, 2);
- cell.setCellStyle(contentStyle);
- setText(cell,IP);
- String organizationName = log.getOrganizationName();
- cell = getCell(sheet, i+1, 3);
- cell.setCellStyle(contentStyle);
- setText(cell,organizationName);
- String usertype = log.getUsertype()==0 ? "管理员" : "员工";
- cell = getCell(sheet, i+1, 4);
- cell.setCellStyle(contentStyle);
- setText(cell,usertype);
- String msg = log.getMsg();
- cell = getCell(sheet, i+1, 5);
- cell.setCellStyle(contentStyle);
- setText(cell,msg);
- Date lastLogin = log.getCreatedatetime()!=null ? log.getCreatedatetime() : null;
- cell = getCell(sheet, i+1, 6);
- cell.setCellStyle(contentStyle);
- setText(cell,Tools.date2Str(lastLogin));
- }
- }
- }
- }
pdf导出:
重写spring调用itext 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
package
light.mvc.utils.pdf;
import
java.io.ByteArrayOutputStream;
import
java.io.OutputStream;
import
java.util.Map;
import
javax.servlet.http.HttpServletRequest;
import
javax.servlet.http.HttpServletResponse;
import
org.springframework.web.servlet.view.AbstractView;
import
com.itextpdf.text.Document;
import
com.itextpdf.text.DocumentException;
import
com.itextpdf.text.PageSize;
import
com.itextpdf.text.pdf.PdfWriter;
/**
* 这里就全部复制spring 的,然后引入的东西改成第5版的就行了 代码 几乎不变,唯一变的是引用路径~。
*
*
*/
public
abstract
class
AbstractIText5PdfView
extends
AbstractView {
public
AbstractIText5PdfView() {
setContentType(
"application/pdf"
);
}
@Override
protected
boolean
generatesDownloadContent() {
return
true
;
}
@Override
protected
final
void
renderMergedOutputModel(Map<String, Object> model, HttpServletRequest request,
HttpServletResponse response)
throws
Exception {
// 获得流
ByteArrayOutputStream baos = createTemporaryOutputStream();
Document document = newDocument();
PdfWriter writer = newWriter(document, baos);
prepareWriter(model, writer, request);
buildPdfMetadata(model, document, request);
document.open();
buildPdfDocument(model, document, writer, request, response);
document.close();
writeToResponse(response, baos);
}
protected
Document newDocument() {
return
new
Document(PageSize.A4);
}
protected
PdfWriter newWriter(Document document, OutputStream os)
throws
DocumentException {
return
PdfWriter.getInstance(document, os);
}
protected
void
prepareWriter(Map<String, Object> model, PdfWriter writer, HttpServletRequest request)
throws
DocumentException {
writer.setViewerPreferences(getViewerPreferences());
}
protected
int
getViewerPreferences() {
return
PdfWriter.ALLOW_PRINTING | PdfWriter.PageLayoutSinglePage;
}
protected
void
buildPdfMetadata(Map<String, Object> model, Document document, HttpServletRequest request) {
}
protected
abstract
void
buildPdfDocument(Map<String, Object> model, Document document, PdfWriter writer,
HttpServletRequest request, HttpServletResponse response)
throws
Exception;
}
|
pdf 公共类 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
package
light.mvc.utils.pdf;
import
java.io.IOException;
import
java.util.ArrayList;
import
java.util.List;
import
java.util.Map;
import
com.itextpdf.text.Chunk;
import
com.itextpdf.text.DocumentException;
import
com.itextpdf.text.Font;
import
com.itextpdf.text.Paragraph;
import
com.itextpdf.text.pdf.BaseFont;
/**
* @ClassName: PDFUtil
* @Description:
* @author liuyajun
* @date 2017年3月2日 下午1:21:21
*
*/
public
class
PDFUtil {
// 对参数的封装形式比如{name}
public
static
final
String BEGIN =
"{"
;
public
static
final
String END =
"}"
;
// 换行形式{#}
public
static
final
String NEW_LINE =
"#"
;
// 默认的行间距、首行距离等,自己添加
public
static
final
float
DEFAULT_LEADING =
20
;
public
static
final
float
DEFAULT_LINE_INDENT =
30
;
// 基本字体和样式
public
static
BaseFont bfChinese;
public
static
Font fontChinese;
public
static
Font UNDER_LINE =
null
;
static
{
try
{
// SIMKAI.TTF 默认系统语言,这里没使用第三方语言包
bfChinese = BaseFont.createFont(
"D:/home/java/contract/web/fonts/simsun.ttf"
,BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED);
//bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
fontChinese =
new
Font(bfChinese,
12
, Font.NORMAL);
UNDER_LINE =
new
Font(bfChinese,
14
,Font.UNDERLINE);
}
catch
(DocumentException e) {
e.printStackTrace();
}
catch
(IOException e) {
e.printStackTrace();
}
}
// 默认样式
public
static
Paragraph getParagraph(String context){
return
getParagraph(context,fontChinese);
}
public
static
Paragraph getParagraph(Chunk chunk){
return
new
Paragraph(chunk);
}
// 指定字体样式
public
static
Paragraph getParagraph(String context,Font font){
return
new
Paragraph(context,font);
}
// 获得新行,首行缩进,和行间距
public
static
Paragraph getNewParagraph(String context,
float
fixedLeading,
float
firstLineIndent){
Paragraph p = getParagraph(context);
p.setLeading(fixedLeading);
p.setFirstLineIndent(firstLineIndent);
return
p;
}
public
static
Paragraph getParagraph(String content , Font font ,
float
fixedLeading ,
int
alignment){
Paragraph p = getParagraph(content);
p.setFont(font);
p.setLeading(fixedLeading);
p.setAlignment(alignment);
return
p;
}
// 默认段落样式
public
static
Paragraph getDefaultParagraph(String context){
Paragraph p = getParagraph(context);
// 默认行间距
p.setLeading(DEFAULT_LEADING);
// 默认首行空隙
p.setFirstLineIndent(DEFAULT_LINE_INDENT);
return
p;
}
// 将参数和字符串内容组合成集合
public
static
List<Paragraph> createParagraphs(String context ,Map<String,Object> map){
int
index =
0
;
List<Paragraph> list =
new
ArrayList<Paragraph>();
Paragraph p = getDefaultParagraph(
null
);
while
((index = context.indexOf(BEGIN)) > -
1
){
String text = context.substring(
0
,index);
context = context.substring(index, context.length());
index = context.indexOf(END);
String param =
null
;
if
(index >
0
){
param = context.substring(BEGIN.length(),index);
}
p.add(text);
if
(!NEW_LINE.equals(param)){
Object value = map.get(param);
if
(value !=
null
){
p.add(
new
Chunk(value.toString(),UNDER_LINE));
}
else
{
p.add(
new
Chunk(
""
));
}
}
else
{
list.add(p);
p = getDefaultParagraph(
null
);
p.setSpacingBefore(
0
);
}
context = context.substring(index+END.length(),context.length());
}
list.add(p);
list.add(getParagraph(context));
return
list;
}
}
|
生成pdf 。
- package light.mvc.utils.pdf;
- import java.util.Date;
- import java.util.List;
- import java.util.Map;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import com.itextpdf.text.Chunk;
- import com.itextpdf.text.Document;
- import com.itextpdf.text.Font;
- import com.itextpdf.text.Paragraph;
- import com.itextpdf.text.pdf.PdfPTable;
- import com.itextpdf.text.pdf.PdfWriter;
- import light.mvc.pageModel.sys.Log;
- import light.mvc.utils.Tools;
- /**
- * @ClassName: LogPdfView
- * @Description:
- * @author liuyajun
- * @date 2017年3月2日 上午11:18:44
- *
- */
- public class PdfView extends AbstractIText5PdfView{
- @Override
- protected void buildPdfDocument(Map<String, Object> model, Document document, PdfWriter writer,
- HttpServletRequest request, HttpServletResponse response) throws Exception {
- try{
- document.open();
- // 标题居中
- String title_content = (String) model.get("title_content");
- Paragraph title = PDFUtil.getParagraph(
- new Chunk(title_content,new Font(PDFUtil.bfChinese,16,Font.BOLD)));
- title.setAlignment(Paragraph.ALIGN_CENTER);
- document.add(title);
- // 表格标题
- List<String> titles = (List<String>) model.get("titles");
- int len = titles.size();
- PdfPTable table = new PdfPTable(len);
- table.setSpacingBefore(20);
- table.setSpacingAfter(30);
- for(int i=0; i<len; i++){ //设置标题
- String str = titles.get(i);
- table.addCell(PDFUtil.getParagraph(str));
- }
- // 表格数据
- String type = (String) model.get("type");
- if ("log".equals(type)){
- List<Log> logList = (List<Log>) model.get("list");
- table = logPdf(table, logList);
- }
- document.add(table);
- // 关闭
- document.close();
- }catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
- *
- * @Title: logPdf
- * @Description: 日志导出
- * @param @param table
- * @param @param logList
- * @param @return
- * @return PdfPTable
- * @throws
- */
- public PdfPTable logPdf(PdfPTable table, List<Log> logList){
- int logCount = logList.size();
- if (logList != null && logCount > 0){
- for(int i=0; i<logCount; i++){
- Log log = logList.get(i);
- String loginname = log.getLoginname();
- table.addCell(PDFUtil.getParagraph(loginname));
- String username = log.getName();
- table.addCell(PDFUtil.getParagraph(username));
- String IP = log.getIp();
- table.addCell(PDFUtil.getParagraph(IP));
- String organizationName = log.getOrganizationName();
- table.addCell(PDFUtil.getParagraph(organizationName));
- String usertype = log.getUsertype()==0 ? "管理员" : "员工";
- table.addCell(PDFUtil.getParagraph(usertype));
- String msg = log.getMsg();
- table.addCell(PDFUtil.getParagraph(msg));
- Date lastLogin = log.getCreatedatetime()!=null ? log.getCreatedatetime() : null;
- table.addCell(PDFUtil.getParagraph(Tools.date2Str(lastLogin)));
- }
- }
- return table;
- }
- }
调用 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/**
* 导出用户信息到excel/pdf
* @return
*/
@RequestMapping
(
"/download"
)
public
ModelAndView export2Excel(HttpServletRequest request, Log log){
SessionInfo sessionInfo = (SessionInfo) request.getSession().getAttribute(GlobalConstant.SESSION_INFO);
if
(!
"admin"
.equals(sessionInfo.getLoginname())){
log.setUsertype(
1
);
log.setOrganizationId(sessionInfo.getOrganizationid());
}
if
(
"1"
.equals(sessionInfo.getUsertype())){
log.setLoginname(sessionInfo.getLoginname());
}
PageFilter ph =
new
PageFilter();
ph.setSort(
"createdatetime"
);
ph.setOrder(
"desc"
);
List<Log> list = logService.dataGrid(log, ph);
Map<String,Object> dataMap =
new
HashMap<String,Object>();
List<String> titles =
new
ArrayList<String>();
titles.add(
"登录名"
);
titles.add(
"姓名"
);
titles.add(
"IP地址"
);
titles.add(
"所属部门"
);
titles.add(
"用户类型"
);
titles.add(
"操作内容"
);
titles.add(
"操作时间"
);
dataMap.put(
"titles"
, titles);
dataMap.put(
"list"
, list);
dataMap.put(
"title_content"
,
"日志"
);
dataMap.put(
"type"
,
"log"
);
String str = request.getParameter(
"str"
);
ModelAndView mv =
null
;
if
(
"excel"
.equals(str)){
ExcelView excel =
new
ExcelView();
mv =
new
ModelAndView(excel,dataMap);
}
else
if
(
"pdf"
.equals(str)){
PdfView pdf =
new
PdfView();
mv =
new
ModelAndView(pdf,dataMap);
}
insertlog(request,
"下载"
+str+
"文件"
,
2
);
return
mv;
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:http://blog.csdn.net/qq_30762453/article/details/60130222 。
最后此篇关于Spring 实现excel及pdf导出表格示例的文章就讲到这里了,如果你想了解更多关于Spring 实现excel及pdf导出表格示例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
好的,这听起来很简单,但我已经花了几个小时在谷歌上搜索,我只是找不到解决方案,这并不复杂。 我想创建一个包含图像和文本的表格。我希望表格的每一行都具有相同的高度。我希望文本始终从顶部开始。 IE。 \
在我的网站表单上 - 我的出生日期、月份和年份菜单显示在两行上,我希望它们都显示在同一行上。 当我测试代码时,它显示在一行中,所以我相信一定存在宽度问题。 您可以在右侧表格 (incomeprotec
我们需要跟踪和审核生产,本质上我们有很多订单,但我们似乎在途中丢失了一些产品(废品等)。 为了阻止这种情况,我们现在已在 Google 表格上下了订单,并列出了应有的数量,然后员工会写下收到的数量。
我正在转换我的应用程序,以便它适用于 iOS 7。在应用程序的一部分,我有两个搜索栏,每个搜索栏都有一个与之关联的 UISearchDisplayController。当我搜索 UISearchDis
正如标题所说,非固定表格布局是否与类似的 HTML 表格具有相同的性能问题? 最佳答案 非固定表格的问题在于,要确定一列的宽度,必须加载该列的所有单元格。这仅在...... …您有一个包含几千字节或几
我在使用 Javascript 遍历表格并从一行的第一个单元格获取文本时遇到问题。我想获取此单元格的文本,以便我可以将它与其他内容进行比较,如果文本匹配则删除该行。但是,当我尝试获取文本时,实际出现的
我经常发现自己想要制作一个表格表格——一堆行,每一行都是一个单独的表格,有自己的字段和提交按钮。例如,这是一个宠物店应用程序示例——假设这是一个结帐屏幕,您可以选择更新所选宠物的数量和属性,并在结帐前
看过许多UBB代码,包括JS,ASP,JSP的,一直没发现表格的UBB,虽然可以直接用HTML模式实现相同表格功能,但对于某些开放的站点来说开放HTML模式终究是不合适的,故一直想实现表格的UBB。
表格由 table 标签来定义。每个表格均有若干行(由 tr 标签定义),每行被分割为若干单元格(由 td 标签定义)。字母 td 指表格数据(table data),即数据单元格的内容。数据单元格
我有一个 HTML 与 border-radius和使用 position: sticky 的粘性标题看起来像这样: https://codepen.io/muhammadrehansaeed/pen
对于 iPhone 应用程序,我需要以网格格式显示只读表格数据。该数据可能有许多行和列。 我可以使用 UITableView,但问题是数据很可能会非常宽并且需要滚动。 有没有办法将 UITableVi
我知道这里有类似的问题,但我找不到适合我的答案。 我想要的是显示表单“默认”是选择了某些选项(在这种情况下,除了“Ban Appeal”或“Ban Appeal(西类牙语)”之外的所有内容,我希望仅在
天啊! 我想在Flutter中创建以下非常简单的表。基本上是两列文字,左列右对齐,右列左对齐。如果右列具有多个名称,则每一行都将顶部对齐。 左列应自动调整为最大项目的大小(因为每个标题都有翻译字符串)
我们开始构建 SSAS 表格模型,并想知道大多数人是否拥有一个或多个模型。如果有多个,您是否复制每个所需的表,或者是否有办法在模型之间共享表?我想我知道答案,但我希望那些有更多经验的人能够证实我们的发
tl;博士 如何将任意数量的单词分成两列,总是在最后一列中只有最后一个单词,在第一列中包含所有其他单词? =IFS( LEN(C2)-LEN(SUBSTITUTE(C2," ",""))=1, SP
你们知道一个图表或dable,它可以提供一个简短而简洁但仍然完整且相对最新的现有协议(protocol)及其细节的 View ? (即:ZeroMQ、Rendez-Vous、EMS、...所有这些!:
我才刚刚开始开发MFC应用程序,我希望对整个“控件”概念更加熟悉。我在Visual Studio中使用对话框编辑器,到目前为止,我无法找到添加简单表/网格的功能。这对我来说似乎很基础,但是我什至找不到
我需要对一个非常大的表或矩阵执行计算和操作,大约有 7500 行和 30000 列。 矩阵数据将如下所示: 文件编号|字1 |字 2 |字 3 |... |字 30000 |文档类 0032 1 0
我正在使用设计非常糟糕的数据库,我需要在编写查询之前重新调整表格。 以下是我的常见问题: 时间戳已分为两列(一列用于日期,另一列用于时间)。 一些字符串列也被拆分成多个列。 大多数字符串都有固定长度和
我正在尝试显示 $row["name"] 通过 HTML Table 的形式,如下所示: echo " ".$row["name"]." "; 我也从这里获取行变量: $que
我是一名优秀的程序员,十分优秀!