How can I Read Multiple files By using InutStream

0
Hi All, Face an problem to read multiple files ….. pvxml is object that can take multiple list of file but when I want to read that file one by one using ReadPVXML().  It acceptable for single file but not for multiple , how can i solve this problem
asked
2 answers
1

Hi sweta

Pls try like this

InputStream inputstream =Core.getFileDocumentContent(getContext(), __XML);

answered
0

You would need to iterate the list. Something like this should work.
 

for (myfirstmodule.proxies.PXMLUpload pvxml : this.PVXML) {
    InputStream PMl Core.getFileDocumentContent(context, pvxml.getMendixObject()); 		      
    x.AccessPxml(PMl);
}


Hope this helps.

answered