readFromStream
Reads a JSON stream and puts its content in the data item associated with the JSONStream object.
General format
void readFromStream ( Json-Source ) |
Syntax rules
1. Json-Source is an object reference to java.io.InputStream.
General rules
1. When the read method is invoked, the whole content of Json-Source is read and the data item associated with the JSONStream object is updated.
NOTE - If the number of occurrences of a JSON field is not known at the time the program is written, specifying the
DYNAMIC phrase of the
OCCURS clause in the data item associated with the JSONStream object is recommended.
Code example
... configuration section. repository. class jsonStream as "com.iscobol.rts.JSONStream" class inpStream as "java.io.InputStream" . ... working-storage section. ... 77 objJsonStream object reference jsonStream. 77 objInpStream object reference inpStream. ... procedure division. ... objJsonStream:>readFromStream(objInpStream) ... |