Skip to main content
10-Marble
August 31, 2023
Solved

covert application data to a File

  • August 31, 2023
  • 1 reply
  • 1101 views

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

 

Best answer by HelesicPetr

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

1 reply

HelesicPetr
22-Sapphire II
22-Sapphire II
August 31, 2023

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