涉及到的表
SELECT * FROM act_ge_bytearray
/**
* 通过流程部署ID获取流程图图片
*/
@Test
public void getImageById()throws Exception{
InputStream inputStream=processEngine.getRepositoryService()
/**
*根据流程部署ID和资源名称获取输入流
*/
.getResourceAsStream("1", "HelloWorld/helloWorld.png");
FileUtils.copyInputStreamToFile(inputStream, new File("D:/helloWorld.png"));
}
}