前端html内容展示
<div class="col-md-1 col_top_daochu">
导出内容并进行下载
</div>
前端js内容展示
<script type="text/javascript" src="${pageContext.request.contextPath }/statics/jquery-1.9.0.min.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath }/statics/frame/layui/layui.all.js"></script>
$(document).on("click",".col_top_daochu",function(){
var headwordId = $(".col_color_zhong").attr("buttonchi");
$.ajax({
type:"post",
url:'${pageContext.request.contextPath }/headword/newfiles.json',
data:{headwordId:headwordId},
dataType:"json",
success:function(res){
if(res.code==6)
{
layer.confirm('导出成功,是否下载?', {
btn: ['下载', '取消']
}, function(index, layero){
window.location.href="http://localhost:8080"+res.fileUrl;
layer.close(index);
}, function(index){
});
}
else if(res.code==5){
layer.msg('导出失败',{icon:5,time:1000},function(){
location.reload();
});
}
},
error:function(){
layer.msg('导出合同出现异常,请查看桌面是否已存在该文档');
location.reload();
}
});
})
后端接口内容展示
@ResponseBody
@RequestMapping("newfiles.json")
public String savenewFile(@RequestParam("headwordId")Integer headwordId,HttpServletRequest request)
{
String fileoriname = request.getSession().getServletContext().getRealPath("") + "/statics/uploadfiles/explay.docx";
String fileconame=request.getSession().getServletContext().getRealPath("") + "/statics/uploadfiledocxs/res1.docx";
String filenowname=request.getSession().getServletContext().getRealPath("")+"/statics/uploadfiles/newWenben.docx";
Headword headword=headwordService.selectByPrimaryKey(headwordId);
Map<String, Object> mapParem=new HashMap<String, Object>();
mapParem.put("headwordId",headword.getHeadwordId().toString() );
mapParem.put("headwordTitle", headword.getHeadwordTitle());
String headwordHtml = headword.getHeadwordContent();
String headwordcontent = headwordHtml.replaceAll("</?[^>]+>", "");
headwordcontent = headwordcontent.replaceAll("<a>\\s*|\t|\r|\n</a>", "");
mapParem.put("headwordContent", headwordcontent);
String scriptureHtml = headword.getScriptureContent();
String scripturecontent = scriptureHtml.replaceAll("</?[^>]+>", "");
scripturecontent = scripturecontent.replaceAll("<a>\\s*|\t|\r|\n</a>", "");
mapParem.put("scriptureContent", scripturecontent);
HashMap<Object, Object> map=new HashMap<Object, Object>();
map.put("headwordId", headwordId);
List<Notes> listnotes=notesService.getSelective(map);
String noteContentHtmls="";
for (int i = 0; i < listnotes.size(); i++) {
noteContentHtmls=noteContentHtmls+listnotes.get(i).getNotesContent()+"\n";
}
String noteContents = noteContentHtmls.replaceAll("</?[^>]+>", "");
mapParem.put("noteContents", noteContents);
mapParem.put("rollTitle", headword.getRoll().getRollTitle());
mapParem.put("prayerTitle", headword.getRoll().getPrayer().getPrayerTitle());
mapParem.put("preambleTitle",headword.getRoll().getPrayer().getPreamble().getPreambleTitle() );
mapParem.put("editionTitle", headword.getRoll().getPrayer().getPreamble().getEdition().getEditionTitle());
mapParem.put("bookTitle", headword.getRoll().getPrayer().getPreamble().getEdition().getBook().getBookTitle());
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
mapParem.put("newDate", dateFormat.format(new Date()));
JSONObject jsonObject=new JSONObject();
boolean bloo= WordUtil.generateWord(null, fileoriname, fileconame);
if(bloo)
{
boolean blu= WordUtil.generateWord(mapParem, fileconame, filenowname);
if(blu)
{
jsonObject.put("msg", "导出成功");
jsonObject.put("code", 6);
jsonObject.put("fileUrl", "/record/statics/uploadfiles/newWenben.docx");
}
else
{
jsonObject.put("msg", "没有导出成功");
jsonObject.put("code", 5);
}
}
return jsonObject.toString();
}
插件静态类 接口内容展示
package com.tools;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import org.apache.poi.POIXMLDocument;
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
import org.apache.poi.openxml4j.opc.OPCPackage;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.poi.xwpf.usermodel.XWPFParagraph;
import org.apache.poi.xwpf.usermodel.XWPFRun;
public class WordUtil {
public static boolean generateWord(Map<String, Object> param, String fileSrc, String fileDest) {
XWPFDocument doc = null;
OPCPackage pack = null;
try {
pack = POIXMLDocument.openPackage(fileSrc);
doc = new XWPFDocument(pack);
if (param != null && param.size() > 0) {
List<XWPFParagraph> paragraphList = doc.getParagraphs();
processParagraphs(paragraphList, param, doc);
}
} catch (Exception e) {
e.printStackTrace();
}
FileOutputStream fopts = null;
try {
fopts = new FileOutputStream(fileDest);
doc.write(fopts);
pack.close();
} catch (IOException e) {
e.printStackTrace();
return false;
} finally {
closeStream(fopts);
}
return true;
}
public static void closeStream(FileOutputStream fopts) {
try {
fopts.close();
} catch (IOException e) {
e.printStackTrace();
}
}
public static void processParagraphs(List<XWPFParagraph> paragraphList, Map<String, Object> param, XWPFDocument doc)
throws InvalidFormatException, FileNotFoundException {
if (paragraphList != null && paragraphList.size() > 0) {
for (XWPFParagraph paragraph : paragraphList) {
List<XWPFRun> runs = paragraph.getRuns();
for (XWPFRun run : runs) {
String text = run.getText(0);
System.out.println("text=========" + text);
if (text != null) {
boolean isSetText = false;
for (Entry<String, Object> entry : param.entrySet()) {
String key = entry.getKey();
if (text.indexOf(key) != -1) {
isSetText = true;
Object value = entry.getValue();
if (value instanceof String) {
System.out.println("key==" + key);
if (text.contains(key)) {
String[] newtext = value.toString().split("\n");
if(newtext.length>0) {
for (int f = 0; f < newtext.length; f++) {
if (f == 0) {
run.setText(newtext[f].trim());
} else {
run.addBreak();
run.setText(newtext[f].trim());
}
}
text = text.replace(key, "");
}else {
text = text.replace(key, value.toString());
}
}
}
}
}
if (isSetText) {
run.setText(text, 0);
}
}
}
}
}
}
}