activiti7 获取流程定义的xml

你离开我真会死。 提交于 2020-08-19 05:45:33
RepositoryService repositoryService = ProcessEngines.getDefaultProcessEngine().getRepositoryService();

//获取BpmnModel对象
BpmnModel bpmnModel = repositoryService.getBpmnModel(processInstanceId);
//创建转换对象

BpmnXMLConverter converter = new BpmnXMLConverter();
//把bpmnModel对象转换成字符
byte[] bytes = converter.convertToXML(bpmnModel);
String xmlContenxt = new String(bytes);











xmlContenxt即为流程的xml
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!