前提:
1、版本要一致,偶这用的是jasperreports-4.1.2,iReport-4.1.1
2、编译好***.jasper
3、/html/image.jsp?image= 替换,是为了显示报表图片,之前用此jsp作为读取报表图片用。
public void process() {
Connection conn = null;
try {
//报表内嵌了SQL,只要传入参数,数据库连接即可。
conn = dataSource.getConnection();
Map parameters = new HashMap();
parameters.put("startTime", "20110101");
parameters.put("endTime", "20111001");
String jasperFile = "d://*****/" + "*****.jasper";
File reportFile = new File(jasperFile);
if (!reportFile.exists())
throw new JRRuntimeException("File jasper not found. The report design must be compiled first.");
JasperPrint jasperPrint =
JasperFillManager.fillReport(
jasperFile,
parameters,
conn
);
JRHtmlExporter exporter = new JRHtmlExporter();
exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);
ByteArrayOutputStream htmlOutputData = new ByteArrayOutputStream();
exporter.setParameter(JRExporterParameter.OUTPUT_STREAM, htmlOutputData);
exporter.setParameter(JRHtmlExporterParameter.IMAGES_URI, imageUrl);
exporter.setParameter(JRHtmlExporterParameter.IMAGES_DIR_NAME, imagePath);
exporter.setParameter(JRHtmlExporterParameter.IS_OUTPUT_IMAGES_TO_DIR, true);
exporter.setParameter(JRHtmlExporterParameter.IS_USING_IMAGES_TO_ALIGN, false);
exporter.setParameter(JRExporterParameter.CHARACTER_ENCODING, "UTF-8");
Map imageNameMap = new HashMap();
exporter.setParameter(JRHtmlExporterParameter.IMAGES_MAP, imageNameMap);
exporter.exportReport();
//attach the html data from htmlOutputData
byte[] imageData = null;
for (Iterator it = imageNameMap.entrySet().iterator(); it.hasNext(); ) {
Map.Entry entry = (Map.Entry) it.next();
String imageName = (String) entry.getKey();
imageData = (byte[]) entry.getValue();
//attach imageData using imageName as Content-ID
}
sendEmail(htmlOutputData.toByteArray(), imageData, imageNameMap);
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (conn != null)
conn.close();
} catch (Exception e) {
}
}
}
public void sendEmail(final byte[] attachmentData, final byte[] imageData, final Map<String, byte[]> imageNameMap) throws MessagingException {
String host = "smtp.126.com";
final String account = "****@126.com";
final String toAddress = "****@163.com";
String username = ""****@126.com";
String password = "******";
JavaMailSenderImpl sender = new JavaMailSenderImpl();
sender.setHost(host);
sender.setUsername(username);
sender.setPassword(password);
MimeMessagePreparator preparator = new MimeMessagePreparator() {
public void prepare(MimeMessage mimeMessage) throws Exception {
Multipart multipart = new MimeMultipart();
MimeBodyPart htmlAttachment = new MimeBodyPart();
String html = new String(attachmentData, "utf-8");
for (String imageName : imageNameMap.keySet()) {
html = html.replace("/html/image.jsp?image=" + imageName, "cid:" + imageName);
}
htmlAttachment.setContent(html, "text/html;charset=\"utf-8\""); //
multipart.addBodyPart(htmlAttachment);
//当你有多个报表图片时
for (String imageName : imageNameMap.keySet()) {
MimeBodyPart imagebody = new MimeBodyPart();
imagebody.setContent(imageData, "application/octet-stream");
imagebody.setHeader("Content-ID", "<" + imageName + ">");
multipart.addBodyPart(imagebody);
}
mimeMessage.setContent(multipart);
mimeMessage.setRecipient(Message.RecipientType.TO, new InternetAddress(toAddress));
mimeMessage.setFrom(new InternetAddress(account));
mimeMessage.setSubject("test send jasperreports mail..");
}
};
try {
sender.send(preparator);
} catch (MailException ex) {
ex.printStackTrace();
}
}
分享到:
相关推荐
onnxruntime-1.16.0-cp311-cp311-win_amd64.whl
基于springboot的流浪猫狗救助系统源码数据库文档.zip
摘 要 如今的信息时代,对信息的共享性,信息的流通性有着较高要求,因此传统管理方式就不适合。为了让美容院信息的管理模式进行升级,也为了更好的维护美容院信息,美容院管理系统的开发运用就显得很有必要。并且通过开发美容院管理系统,不仅可以让所学的SpringBoot框架得到实际运用,也可以掌握MySQL的使用方法,对自身编程能力也有一个检验和提升的过程。尤其是通过实践,可以对系统的开发流程加深印象,无论是前期的分析与设计,还是后期的编码测试等环节,都可以有一个深刻的了解。 美容院管理系统根据调研,确定其实现的功能主要包括美容用品管理,美容项目管理,美容部位管理,销量信息管理,订单管理,美容项目预约信息管理等功能。 借助于美容院管理系统这样的工具,让信息系统化,流程化,规范化是最终的发展结果,让其遵循实际操作流程的情况下,对美容院信息实施规范化处理,让美容院信息通过电子的方式进行保存,无论是管理人员检索美容院信息,维护美容院信息都可以便利化操作,真正缩短信息处理时间,节省人力和信息管理的成本。 关键字:美容院管理系统,SpringBoot框架,MySQL
numpy-1.21.1-cp39-cp39-linux_armv7l.whl
基于JavaWeb+springboot的宠物救助及领养平台源码数据库文档.zip
基于springboot员工在线餐饮管理系统源码数据库文档.zip
matplotlib-3.5.3-cp37-cp37m-linux_armv7l.whl
基于springboot+web的留守儿童网站源码数据库文档.zip
STM32神舟III号例程源码SysTick系统滴答(神舟III号-库函数版)提取方式是百度网盘分享地址
STM32开发相关软件ISP 程序下载STM32开发相关软件ISP 程序下载提取方式是百度网盘分享地址
onnxruntime-1.17.0-cp310-cp310-win_amd64.whl
Pillow-9.5.0-cp39-cp39-linux_armv7l.whl
基于springboot高性能计算中心的高性能集群共享平台源码数据库文档.zip
SciPy-1.11.1-cp311-cp311-linux_armv7l.whl
主机硬件信息邮件及微信推送
numpy-1.23.4-cp39-cp39-linux_armv7l.whl
基于springboot视频点播系统源码数据库文档.zip
基于springboot竞赛管理系统源码数据库文档.zip
环境说明: 开发语言:python Python版本:3.6.8 数据库:mysql 5.7数据库工具:Navicat11开发软件:pycharm
opencv_python-4.6.0.66-cp37-cp37m-linux_armv7l.whl