码迷,mamicode.com
首页 > 其他好文 > 详细

Activiti 5.18 流程Model 转成 流程BPMN文件

时间:2015-10-09 18:19:01      阅读:532      评论:0      收藏:0      [点我收藏+]

标签:

直接上代码吧

        byte[] bpmnBytes = null;
        String filename = null;
        JsonNode editorNode = new ObjectMapper().readTree(repositoryService.getModelEditorSource(modelId));
        BpmnJsonConverter jsonConverter = new BpmnJsonConverter();
        BpmnModel model = jsonConverter.convertToBpmnModel(editorNode);
        filename = model.getMainProcess().getId() + ".bpmn20.xml";
        bpmnBytes = new BpmnXMLConverter().convertToXML(model);
        
        ByteArrayInputStream in = new ByteArrayInputStream(bpmnBytes);

字节流in中包含着已经转成bpmn文件的字节,之后怎么输出就看系统需求了

Activiti 5.18 流程Model 转成 流程BPMN文件

标签:

原文地址:http://www.cnblogs.com/yanzhenxing/p/4864701.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!