|
|
@ -6,8 +6,9 @@ import com.hnac.hzims.safeproduct.constants.SafeProductConstant; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.apache.commons.io.IOUtils; |
|
|
|
import org.apache.commons.io.IOUtils; |
|
|
|
import org.apache.poi.xwpf.usermodel.*; |
|
|
|
import org.apache.poi.xwpf.usermodel.*; |
|
|
|
import org.json.JSONArray; |
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
import org.json.JSONObject; |
|
|
|
import com.alibaba.fastjson.JSONArray; |
|
|
|
|
|
|
|
//import org.json.JSONObject;
|
|
|
|
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTHyperlink; |
|
|
|
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTHyperlink; |
|
|
|
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTR; |
|
|
|
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTR; |
|
|
|
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTText; |
|
|
|
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTText; |
|
|
@ -115,47 +116,82 @@ public class BaseUtil { |
|
|
|
* @param params 数据参数 |
|
|
|
* @param params 数据参数 |
|
|
|
* @return 文件 |
|
|
|
* @return 文件 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public static XWPFDocument fillDocument(String templatePath, Map<String, Object> params, String findName) { |
|
|
|
// public static XWPFDocument fillDocument(String templatePath, Map<String, Object> params, String findName) {
|
|
|
|
|
|
|
|
// XWPFDocument xwpfDocument = null;
|
|
|
|
|
|
|
|
// try {
|
|
|
|
|
|
|
|
// xwpfDocument = WordExportUtil.exportWord07(templatePath, params);
|
|
|
|
|
|
|
|
// if (StringUtils.isNotEmpty(findName)) {
|
|
|
|
|
|
|
|
// String findText = params.get(findName).toString();
|
|
|
|
|
|
|
|
// if (StringUtils.isNotEmpty(findText)) {
|
|
|
|
|
|
|
|
// JSONArray jsonArray = new JSONArray(findText);
|
|
|
|
|
|
|
|
// for (XWPFTable table : xwpfDocument.getTables()) {
|
|
|
|
|
|
|
|
// for (int row = 0; row < table.getNumberOfRows(); row++) {
|
|
|
|
|
|
|
|
// for (int col = 0; col < table.getRow(row).getTableCells().size(); col++) {
|
|
|
|
|
|
|
|
// XWPFTableCell cell = table.getRow(row).getCell(col);
|
|
|
|
|
|
|
|
// for (XWPFParagraph p : cell.getParagraphs()) {
|
|
|
|
|
|
|
|
// for (int index = 0; index < p.getRuns().size(); index++) {
|
|
|
|
|
|
|
|
// XWPFRun run = p.getRuns().get(index);
|
|
|
|
|
|
|
|
// String text = run.getText(0);
|
|
|
|
|
|
|
|
// if (findText.equals(text)) {
|
|
|
|
|
|
|
|
// run.setText("", 0); // 清除原有文本
|
|
|
|
|
|
|
|
// XWPFParagraph paragraph = run.getParagraph();
|
|
|
|
|
|
|
|
// for (int i = 0; i < jsonArray.length(); i++) {
|
|
|
|
|
|
|
|
// JSONObject jsonObject = jsonArray.getJSONObject(i);
|
|
|
|
|
|
|
|
// String name = jsonObject.getString("name");
|
|
|
|
|
|
|
|
// String url = jsonObject.getString("url");
|
|
|
|
|
|
|
|
// // url编码格式化
|
|
|
|
|
|
|
|
// String encodeName = URLEncoder.encode(name, "UTF-8").replaceAll("\\+", "%20");
|
|
|
|
|
|
|
|
// String prefixString = url.substring(0, url.lastIndexOf("/") + 1);
|
|
|
|
|
|
|
|
// String encodeUrl = prefixString + encodeName;
|
|
|
|
|
|
|
|
// String id = paragraph.getDocument().getPackagePart().addExternalRelationship(encodeUrl,
|
|
|
|
|
|
|
|
// XWPFRelation.HYPERLINK.getRelation()).getId();
|
|
|
|
|
|
|
|
// CTHyperlink cLink = paragraph.getCTP().addNewHyperlink();
|
|
|
|
|
|
|
|
// cLink.setId(id);
|
|
|
|
|
|
|
|
// CTText ctText = CTText.Factory.newInstance();
|
|
|
|
|
|
|
|
// ctText.setStringValue(name);
|
|
|
|
|
|
|
|
// CTR ctr = CTR.Factory.newInstance();
|
|
|
|
|
|
|
|
// ctr.setTArray(new CTText[]{ctText});
|
|
|
|
|
|
|
|
// cLink.setRArray(new CTR[]{ctr});
|
|
|
|
|
|
|
|
// if (i < jsonArray.length() - 1) {
|
|
|
|
|
|
|
|
// paragraph.createRun().addBreak();
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// if (templatePath.equals("template/卫生自查表.docx")) {
|
|
|
|
|
|
|
|
// formatHygieneRecordTable(xwpfDocument);
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// } catch (Exception e) {
|
|
|
|
|
|
|
|
// log.error("数据写入异常: {}",e.getCause().toString()+ e.getStackTrace());
|
|
|
|
|
|
|
|
// e.printStackTrace();
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// return xwpfDocument;
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static XWPFDocument fillDocument(String templatePath, Map<String, Object> params, String findName) throws IOException { |
|
|
|
XWPFDocument xwpfDocument = null; |
|
|
|
XWPFDocument xwpfDocument = null; |
|
|
|
try { |
|
|
|
try { |
|
|
|
xwpfDocument = WordExportUtil.exportWord07(templatePath, params); |
|
|
|
xwpfDocument = WordExportUtil.exportWord07(templatePath, params); |
|
|
|
if (StringUtils.isNotEmpty(findName)) { |
|
|
|
if (findName != null && !findName.isEmpty()) { |
|
|
|
String findText = params.get(findName).toString(); |
|
|
|
String findText = params.get(findName).toString(); |
|
|
|
if (StringUtils.isNotEmpty(findText)) { |
|
|
|
if (findText != null && !findText.isEmpty()) { |
|
|
|
JSONArray jsonArray = new JSONArray(findText); |
|
|
|
JSONArray jsonArray = JSONArray.parseArray(findText); |
|
|
|
for (XWPFTable table : xwpfDocument.getTables()) { |
|
|
|
for (XWPFTable table : xwpfDocument.getTables()) { |
|
|
|
for (int row = 0; row < table.getNumberOfRows(); row++) { |
|
|
|
for (XWPFTableRow row : table.getRows()) { |
|
|
|
for (int col = 0; col < table.getRow(row).getTableCells().size(); col++) { |
|
|
|
for (XWPFTableCell cell : row.getTableCells()) { |
|
|
|
XWPFTableCell cell = table.getRow(row).getCell(col); |
|
|
|
|
|
|
|
for (XWPFParagraph p : cell.getParagraphs()) { |
|
|
|
for (XWPFParagraph p : cell.getParagraphs()) { |
|
|
|
for (int index = 0; index < p.getRuns().size(); index++) { |
|
|
|
for (XWPFRun run : p.getRuns()) { |
|
|
|
XWPFRun run = p.getRuns().get(index); |
|
|
|
|
|
|
|
String text = run.getText(0); |
|
|
|
String text = run.getText(0); |
|
|
|
if (findText.equals(text)) { |
|
|
|
if (findText.equals(text)) { |
|
|
|
run.setText("", 0); // 清除原有文本
|
|
|
|
run.setText("", 0); // 清除原有文本
|
|
|
|
XWPFParagraph paragraph = run.getParagraph(); |
|
|
|
XWPFParagraph paragraph = run.getParagraph(); |
|
|
|
for (int i = 0; i < jsonArray.length(); i++) { |
|
|
|
insertJsonArrayIntoParagraph(jsonArray, paragraph); |
|
|
|
JSONObject jsonObject = jsonArray.getJSONObject(i); |
|
|
|
|
|
|
|
String name = jsonObject.getString("name"); |
|
|
|
|
|
|
|
String url = jsonObject.getString("url"); |
|
|
|
|
|
|
|
// url编码格式化
|
|
|
|
|
|
|
|
String encodeName = URLEncoder.encode(name, "UTF-8").replaceAll("\\+", "%20"); |
|
|
|
|
|
|
|
String prefixString = url.substring(0, url.lastIndexOf("/") + 1); |
|
|
|
|
|
|
|
String encodeUrl = prefixString + encodeName; |
|
|
|
|
|
|
|
String id = paragraph.getDocument().getPackagePart().addExternalRelationship(encodeUrl, |
|
|
|
|
|
|
|
XWPFRelation.HYPERLINK.getRelation()).getId(); |
|
|
|
|
|
|
|
CTHyperlink cLink = paragraph.getCTP().addNewHyperlink(); |
|
|
|
|
|
|
|
cLink.setId(id); |
|
|
|
|
|
|
|
CTText ctText = CTText.Factory.newInstance(); |
|
|
|
|
|
|
|
ctText.setStringValue(name); |
|
|
|
|
|
|
|
CTR ctr = CTR.Factory.newInstance(); |
|
|
|
|
|
|
|
ctr.setTArray(new CTText[]{ctText}); |
|
|
|
|
|
|
|
cLink.setRArray(new CTR[]{ctr}); |
|
|
|
|
|
|
|
if (i < jsonArray.length() - 1) { |
|
|
|
|
|
|
|
paragraph.createRun().addBreak(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -163,16 +199,27 @@ public class BaseUtil { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if (templatePath.equals("template/卫生自查表.docx")) { |
|
|
|
|
|
|
|
formatHygieneRecordTable(xwpfDocument); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} catch (Exception e) { |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("数据写入异常: {}",e.getCause().toString()+ e.getStackTrace()); |
|
|
|
|
|
|
|
e.printStackTrace(); |
|
|
|
e.printStackTrace(); |
|
|
|
} |
|
|
|
} |
|
|
|
return xwpfDocument; |
|
|
|
return xwpfDocument; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static void insertJsonArrayIntoParagraph(JSONArray jsonArray, XWPFParagraph paragraph) throws IOException { |
|
|
|
|
|
|
|
for (int i = 0; i < jsonArray.size(); i++) { |
|
|
|
|
|
|
|
JSONObject jsonObject = jsonArray.getJSONObject(i); |
|
|
|
|
|
|
|
String name = jsonObject.getString("name"); |
|
|
|
|
|
|
|
String url = jsonObject.getString("url"); |
|
|
|
|
|
|
|
// URL编码格式化
|
|
|
|
|
|
|
|
String encodeName = URLEncoder.encode(name, "UTF-8").replaceAll("\\+", "%20"); |
|
|
|
|
|
|
|
String prefixString = url.substring(0, url.lastIndexOf("/") + 1); |
|
|
|
|
|
|
|
String encodeUrl = prefixString + encodeName; |
|
|
|
|
|
|
|
XWPFRun newRun = paragraph.createRun(); |
|
|
|
|
|
|
|
newRun.setText(encodeUrl); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 卫生自查表格式处理 |
|
|
|
* 卫生自查表格式处理 |
|
|
|
* @param xwpfDocument word文件类 |
|
|
|
* @param xwpfDocument word文件类 |
|
|
|