You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
原因是me.kafeitu.demo.activiti.web.workflow.ModelController Line 105 Deployment deployment = repositoryService.createDeployment().name(modelData.getName()).addString(processName, new String(bpmnBytes)).deploy();
new String()使用的是平台默认编码,Windows是GB2312,editor生成是使用的UTF-8
指定string编码UTF-8就可以了。 Deployment deployment = repositoryService.createDeployment().name(modelData.getName()).addString(processName, new String(bpmnBytes, "UTF-8")).deploy();
在ActivitiEditor里面编辑的流程,部署后中文乱码。 @henryyan
The text was updated successfully, but these errors were encountered: