cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community email notifications are disrupted. While we are working to resolve, please check on your favorite boards regularly to keep up with your conversations and new topics.

covert application data to a File

JM_10276355
6-Contributor

covert application data to a File

Hi,

 

is any one aware of getting the file from Application data, I have a attachment XML as secondary content to EPM Document, I want the XML as File rather than applicationContent and pass the File as a parameter to other method.

 

Anyone aware of this please add in your comments or suggestions.

 

Thanks

 

1 ACCEPTED SOLUTION

Accepted Solutions

Hi @JM_10276355 

What do you need? 

get stream from application data ? or do you need ty save file to Application Data? 

 

There is method that get the file as a InputStream from Application data

here is example

InputStream stream = ContentServerHelper.service.findContentStream(appData);

 

Also there is method how to save file as a InputStream to the Application Data. 

ContentServerHelper.service.updateContent(contentObject, newApplicationData, byteArrayInputStream);

 

hope this can help

 

PetrH

View solution in original post

1 REPLY 1

Hi @JM_10276355 

What do you need? 

get stream from application data ? or do you need ty save file to Application Data? 

 

There is method that get the file as a InputStream from Application data

here is example

InputStream stream = ContentServerHelper.service.findContentStream(appData);

 

Also there is method how to save file as a InputStream to the Application Data. 

ContentServerHelper.service.updateContent(contentObject, newApplicationData, byteArrayInputStream);

 

hope this can help

 

PetrH

Top Tags