|
|
|
@ -344,16 +344,10 @@ public class CoursesServiceImpl extends ServiceImpl<CoursesMapper, Courses> impl |
|
|
|
|
File rootPath = new File(ResourceUtils.getURL("classpath:").getPath()); //SpringBoot项目获取根目录的方式
|
|
|
|
|
File templatePath = new File(rootPath.getAbsolutePath(),"/templates/courses.docx");//------------------需要模板的地址
|
|
|
|
|
|
|
|
|
|
FileInputStream template1; |
|
|
|
|
try { |
|
|
|
|
template1 = new FileInputStream(templatePath); |
|
|
|
|
} catch (FileNotFoundException e) { |
|
|
|
|
e.printStackTrace(); |
|
|
|
|
throw new Exception("模板文件未找到"); |
|
|
|
|
} |
|
|
|
|
// 加载Word模板------------------路径换成服务器里文件的绝对路径(要是相对路径也行也OK)
|
|
|
|
|
FileInputStream template = new FileInputStream("D:\\IDEA\\AAATEA\\teaching-backend\\src\\main\\resources\\templates\\courses.docx"); |
|
|
|
|
XWPFDocument document = new XWPFDocument(template); |
|
|
|
|
// // 加载Word模板------------------路径换成服务器里文件的绝对路径(要是相对路径也行也OK)
|
|
|
|
|
// FileInputStream template = new FileInputStream("D:\\Users\\Desktop\\teaching-backend\\src\\main\\resources\\templates\\courses.docx");
|
|
|
|
|
// new XWPFDocument(template);
|
|
|
|
|
XWPFDocument document; |
|
|
|
|
|
|
|
|
|
//准备导出数据
|
|
|
|
|
//查询课程通过课程id查--课程简介
|
|
|
|
@ -413,11 +407,18 @@ public class CoursesServiceImpl extends ServiceImpl<CoursesMapper, Courses> impl |
|
|
|
|
|
|
|
|
|
document = WordExportUtil.exportWord07(templatePath.getPath(), params); |
|
|
|
|
|
|
|
|
|
//----------------修改表格模版在导入参数之后
|
|
|
|
|
|
|
|
|
|
//获取第2个表格----------
|
|
|
|
|
XWPFTable table = document.getTables().get(1); |
|
|
|
|
|
|
|
|
|
for (int i = 0; i < course_number - 1; i++) { |
|
|
|
|
//新增一行单元格
|
|
|
|
|
XWPFTableRow newRow = table.createRow(); |
|
|
|
|
newRow.getCell(0).setText("课程目标" + (i + 2)); |
|
|
|
|
newRow.getCell(0).getParagraphArray(0).setAlignment(ParagraphAlignment.CENTER);//水平居中
|
|
|
|
|
newRow.getCell(0).setVerticalAlignment(XWPFTableCell.XWPFVertAlign.CENTER);//垂直居中
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//获取第5个表格
|
|
|
|
@ -428,16 +429,21 @@ public class CoursesServiceImpl extends ServiceImpl<CoursesMapper, Courses> impl |
|
|
|
|
XWPFTableRow newRow = table5.createRow(); |
|
|
|
|
|
|
|
|
|
newRow.getCell(0).setText(Integer.valueOf(i+2).toString()); |
|
|
|
|
newRow.getCell(0).getParagraphArray(0).setIndentationLeft(0); |
|
|
|
|
newRow.getCell(0).getParagraphArray(0).setIndentationHanging(0); |
|
|
|
|
newRow.getCell(0).getParagraphArray(0).setAlignment(ParagraphAlignment.CENTER);//水平居中
|
|
|
|
|
newRow.getCell(0).setVerticalAlignment(XWPFTableCell.XWPFVertAlign.CENTER);//垂直居中
|
|
|
|
|
|
|
|
|
|
newRow.getCell(1).setText(" 课程目标" + (i + 2)); |
|
|
|
|
//课程目标
|
|
|
|
|
newRow.getCell(1).setText("课程目标" + (i + 2)); |
|
|
|
|
newRow.getCell(1).getParagraphArray(0).setAlignment(ParagraphAlignment.CENTER);//水平居中
|
|
|
|
|
newRow.getCell(1).setVerticalAlignment(XWPFTableCell.XWPFVertAlign.CENTER);//垂直居中
|
|
|
|
|
//扩四列
|
|
|
|
|
for (int j = 0; j < 4; j++) { |
|
|
|
|
newRow.createCell(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
table5.setTableAlignment(TableRowAlign.CENTER); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String filename= courses.getName()+"课程标准.docx"; |
|
|
|
|
//设置文件的打开方式和mime类型
|
|
|
|
@ -447,65 +453,6 @@ public class CoursesServiceImpl extends ServiceImpl<CoursesMapper, Courses> impl |
|
|
|
|
document.write(outputStream); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// public static void insertRow(XWPFTable table, int copyrowIndex, int newrowIndex) {
|
|
|
|
|
// // 在表格中指定的位置新增一行
|
|
|
|
|
// XWPFTableRow targetRow = table.insertNewTableRow(newrowIndex);
|
|
|
|
|
// // 获取需要复制行对象
|
|
|
|
|
// XWPFTableRow copyRow = table.getRow(copyrowIndex);
|
|
|
|
|
// //复制行对象给新增的行对象
|
|
|
|
|
// targetRow.getCtRow().setTrPr(copyRow.getCtRow().getTrPr());
|
|
|
|
|
// //获取需要复制行对象的列
|
|
|
|
|
// List<XWPFTableCell> copyCells = copyRow.getTableCells();
|
|
|
|
|
// //新增的对象的列
|
|
|
|
|
// XWPFTableCell targetCell = null;
|
|
|
|
|
// //遍历复制行对象的列
|
|
|
|
|
// for (int i = 0; i < copyCells.size(); i++) {
|
|
|
|
|
// //复制行对象的列
|
|
|
|
|
// XWPFTableCell copyCell = copyCells.get(i);
|
|
|
|
|
// //新增的行对象创建一列
|
|
|
|
|
// targetCell = targetRow.addNewTableCell();
|
|
|
|
|
// //格式复制
|
|
|
|
|
// targetCell.getCTTc().setTcPr(copyCell.getCTTc().getTcPr());
|
|
|
|
|
// if (copyCell.getParagraphs() != null && copyCell.getParagraphs().size() > 0) {
|
|
|
|
|
// targetCell.getParagraphs().get(0).getCTP().setPPr(copyCell.getParagraphs().get(0).getCTP().getPPr());
|
|
|
|
|
// if (copyCell.getParagraphs().get(0).getRuns() != null
|
|
|
|
|
// && copyCell.getParagraphs().get(0).getRuns().size() > 0) {
|
|
|
|
|
// XWPFRun cellR = targetCell.getParagraphs().get(0).createRun();
|
|
|
|
|
// cellR.setBold(copyCell.getParagraphs().get(0).getRuns().get(0).isBold());
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// private static void replaceVariable(XWPFDocument document, String variable, String replacement) {
|
|
|
|
|
// for (XWPFParagraph paragraph : document.getParagraphs()) {
|
|
|
|
|
// for (XWPFRun run : paragraph.getRuns()) {
|
|
|
|
|
// String text = run.getText(0);
|
|
|
|
|
// if (text != null && text.contains(variable)) {
|
|
|
|
|
// text = text.replace(variable, replacement);
|
|
|
|
|
// run.setText(text, 0);
|
|
|
|
|
// // run.setFontFamily("Arial");
|
|
|
|
|
// // run.setFontSize(14);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// private static void replaceVariableInTable(XWPFTable table, String variable, String replacement) {
|
|
|
|
|
// for (XWPFTableRow row : table.getRows()) {
|
|
|
|
|
// for (XWPFTableCell cell : row.getTableCells()) {
|
|
|
|
|
// for (XWPFParagraph paragraph : cell.getParagraphs()) {
|
|
|
|
|
// for (XWPFRun run : paragraph.getRuns()) {
|
|
|
|
|
// String text = run.getText(0);
|
|
|
|
|
// if (text != null && text.contains(variable)) {
|
|
|
|
|
// text = text.replace(variable, replacement);
|
|
|
|
|
// run.setText(text, 0);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|