作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是上传文件形式的json代码
"fieldType":"AttachFileFieldRepresentation",
"id":"upload_file",
"name":"Upload source project (project folder or zip file)",
"type":"upload",
在我创建的执行监听器类内的方法中,我有以下代码
taskService = ProcessEngines.getDefaultProcessEngine().getTaskService();
Attachment attach = taskService.getAttachment("upload_file");
if(attach!=null){
System.out.println("Attachment not null");
} else {
System.out.println("Null file attached");
}
每次我得到一个空文件时。
我无法检索上传的文件。我不知道我做错了什么您能帮我如何获取附件吗?
最佳答案
请尝试此代码可能会帮助您获取附件 ID。
ActivitiScriptNode scriptNode = (ActivitiScriptNode)execution.getVariable(WorkflowNotificationUtils.PROP_PACKAGE);
NodeRef packagenode = scriptNode.getNodeRef();
NodeRef docRef= Configuration.serviceRegistry.getNodeService().getChildAssocs(packagenode).get(0).getChildRef();
关于java - Alfresco Activiti - 如何在 Alfresco Activiti 中获取附件 id?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43626354/
我是一名优秀的程序员,十分优秀!