文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

spring boot怎么实现自动输出word文档功能

2023-06-14 14:14

关注

这篇文章主要介绍了spring boot怎么实现自动输出word文档功能,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

springboot是什么

springboot一种全新的编程规范,其设计目的是用来简化新Spring应用的初始搭建以及开发过程,SpringBoot也是一个服务于框架的框架,服务范围是简化配置文件。

spring boot实现自动输出word文档功能

本文用到Apache POI组件
组件依赖在pom.xml文件中添加

<dependency>            <groupId>org.apache.poi</groupId>            <artifactId>poi</artifactId>            <version>4.1.0</version>        </dependency>        <dependency>            <groupId>org.apache.poi</groupId>            <artifactId>poi-ooxml</artifactId>            <version>4.1.0</version>        </dependency>

首先创建相关的实体类、编写需要用到的sql查询。

import lombok.Data;// 选择题实体@Datapublic class MultiQuestion {    private Integer questionId;    private String subject;    private String section;    private String answerA;    private String answerB;    private String answerC;    private String answerD;    private String question;    private String level;    private String rightAnswer;    private String analysis; //题目解析    private Integer score; }
import lombok.Data;//填空题实体类@Datapublic class FillQuestion {    private Integer questionId;    private String subject;    private String question;    private String answer;    private Integer score;    private String level;    private String section;    private String analysis; //题目解析 }
import lombok.Data;//判断题实体类@Datapublic class JudgeQuestion {    private Integer questionId;    private String subject;    private String question;    private String answer;    private String level;    private String section;    private Integer score;    private String analysis; //题目解析}

创建好要用到的实体类之后,利用mybatis写sql查询,可以分为两种:1、配置mapper.xml文件路径,在xml文件中编写sql语句。2、直接使用注解。本文使用方法为第二种。

@Mapperpublic interface MultiQuestionMapper {        @Select("select * from multi_question where questionId in (select questionId from paper_manage where questionType = 1 and paperId = #{paperId})")    List<MultiQuestion> findByIdAndType(Integer PaperId);    @Select("select * from multi_question")    IPage<MultiQuestion> findAll(Page page);        @Select("select questionId from multi_question order by questionId desc limit 1")    MultiQuestion findOnlyQuestionId();    @Options(useGeneratedKeys = true,keyProperty = "questionId")    @Insert("insert into multi_question(subject,question,answerA,answerB,answerC,answerD,rightAnswer,analysis,section,level) " +            "values(#{subject},#{question},#{answerA},#{answerB},#{answerC},#{answerD},#{rightAnswer},#{analysis},#{section},#{level})")    int add(MultiQuestion multiQuestion);    @Select("select questionId from multi_question  where subject =#{subject} order by rand() desc limit #{pageNo}")    List<Integer> findBySubject(String subject,Integer pageNo);}
//填空题@Mapperpublic interface FillQuestionMapper {    @Select("select * from fill_question where questionId in (select questionId from paper_manage where questionType = 2 and paperId = #{paperId})")    List<FillQuestion> findByIdAndType(Integer paperId);    @Select("select * from fill_question")    IPage<FillQuestion> findAll(Page page);        @Select("select questionId from fill_question order by questionId desc limit 1")    FillQuestion findOnlyQuestionId();    @Options(useGeneratedKeys = true,keyProperty ="questionId" )    @Insert("insert into fill_question(subject,question,answer,analysis,level,section) values " +            "(#{subject,},#{question},#{answer},#{analysis},#{level},#{section})")    int add(FillQuestion fillQuestion);    @Select("select questionId from fill_question where subject = #{subject} order by rand() desc limit #{pageNo}")    List<Integer> findBySubject(String subject,Integer pageNo);}
//判断题@Mapperpublic interface JudgeQuestionMapper {    @Select("select * from judge_question where questionId in (select questionId from paper_manage where questionType = 3 and paperId = #{paperId})")    List<JudgeQuestion> findByIdAndType(Integer paperId);    @Select("select * from judge_question")    IPage<JudgeQuestion> findAll(Page page);        @Select("select questionId from judge_question order by questionId desc limit 1")    JudgeQuestion findOnlyQuestionId();    @Insert("insert into judge_question(subject,question,answer,analysis,level,section) values " +            "(#{subject},#{question},#{answer},#{analysis},#{level},#{section})")    int add(JudgeQuestion judgeQuestion);    @Select("select questionId from judge_question  where subject=#{subject}  order by rand() desc limit #{pageNo}")    List<Integer> findBySubject(String subject,Integer pageNo);}

写好mapper底层查询后,需要创建service及其实现类来调用mapper底层。例如:

public interface JudgeQuestionService {    List<JudgeQuestion> findByIdAndType(Integer paperId);    IPage<JudgeQuestion> findAll(Page<JudgeQuestion> page);    JudgeQuestion findOnlyQuestionId();    int add(JudgeQuestion judgeQuestion);    List<Integer> findBySubject(String subject,Integer pageNo);}
@Servicepublic class JudgeQuestionServiceImpl implements JudgeQuestionService {    @Autowired    private JudgeQuestionMapper judgeQuestionMapper;    @Override    public List<JudgeQuestion> findByIdAndType(Integer paperId) {        return judgeQuestionMapper.findByIdAndType(paperId);    }    @Override    public IPage<JudgeQuestion> findAll(Page<JudgeQuestion> page) {        return judgeQuestionMapper.findAll(page);    }    @Override    public JudgeQuestion findOnlyQuestionId() {        return judgeQuestionMapper.findOnlyQuestionId();    }    @Override    public int add(JudgeQuestion judgeQuestion) {        return judgeQuestionMapper.add(judgeQuestion);    }    @Override    public List<Integer> findBySubject(String subject, Integer pageNo) {        return judgeQuestionMapper.findBySubject(subject,pageNo);    }}

最后将输出文件方法写在controller层:

@RequestMapping("/exam/exportWord")    public void exportWord(int examCode, HttpServletResponse response) throws FileNotFoundException{    //由于题目应于考试信息对应 所以需要先查出考试信息后根据pageId来查找对应的组卷信息        ExamManage res = examManageService.findById(examCode);        int paperId = res.getPaperId();        List<MultiQuestion> multiQuestionRes = multiQuestionService.findByIdAndType(paperId);   //选择题题库 1        List<FillQuestion> fillQuestionsRes = fillQuestionService.findByIdAndType(paperId);     //填空题题库 2        List<JudgeQuestion> judgeQuestionRes = judgeQuestionService.findByIdAndType(paperId);        //响应到客户端        XWPFDocument document= new XWPFDocument();        //分页        XWPFParagraph firstParagraph = document.createParagraph();        //格式化段落        firstParagraph.getStyleID();        XWPFRun run = firstParagraph.createRun();        int i = 1;        run.setText("一、选择题" + "\r\n"); //换行        for (MultiQuestion multiQuestion : multiQuestionRes) {            String str = multiQuestion.getQuestion();            String str1 = multiQuestion.getAnswerA();            String str2 = multiQuestion.getAnswerB();            String str3 = multiQuestion.getAnswerC();            String str4 = multiQuestion.getAnswerD();            run.setText(i + ". " + str + "\r\n");            run.setText("A. " + str1 + "\r\n");            run.setText("B. " + str2 + "\r\n");            run.setText("C. " + str3 + "\r\n");            run.setText("D. " + str4 + "\r\n");            i++;        }        run.setText("二、填空题" + "\r\n");        for (FillQuestion fillQuestion : fillQuestionsRes) {            String str = fillQuestion.getQuestion();            run.setText(i + ". " + str + "\r\n");            i++;        }        run.setText("三、判断题" + "\r\n");        for (JudgeQuestion judgeQuestion : judgeQuestionRes) {            String str = judgeQuestion.getQuestion();            run.setText(i + ". " + str + "\r\n");            i++;        }        document.createTOC();        try {            //设置相应头            this.setResponseHeader(response, res.getSource() + "试卷.doc");            //输出流            OutputStream os = response.getOutputStream();            document.write(os);            os.flush();            os.close();        } catch (Exception e) {            e.printStackTrace();        }    }        private void setResponseHeader(HttpServletResponse response, String fileName) {        try {            try {                fileName = URLEncoder.encode(fileName, "UTF-8");            } catch (UnsupportedEncodingException e) {                e.printStackTrace();            }            response.setContentType("application/octet-stream;charset=UTF-8");            response.setHeader("Content-Disposition", "attachment;filename="+ fileName);            //遵守缓存规定            response.addHeader("Pargam", "no-cache");            response.addHeader("Cache-Control", "no-cache");        } catch (Exception ex) {            ex.printStackTrace();        }    }

效果:

spring boot怎么实现自动输出word文档功能

感谢你能够认真阅读完这篇文章,希望小编分享的“spring boot怎么实现自动输出word文档功能”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网行业资讯频道,更多相关知识等着你来学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯