Question
How to extract the image attachment and display in html?
- March 7, 2019
- 1 reply
- 2428 views
I am trying to extract an image from the Document workflow. (See attached)
The respective jsp file code for this is :
ArrayList attachement = (ArrayList) getFieldValue (cmdRunner, childId, "Text Attachments");
if (attachement != null && attachement.size () > 0) {
if (text.length () > 0) {
text += "<br>";
}
text = text + "<b><<Attachment>></b>"; // This line seem in correct.
Any body know how to extract the image ?
Appreciate your help.

