skip to main content

Internal Objects : JSONStream Class (com.iscobol.rts.JSONStream) : writeToStream

writeToStream
Puts the content of the data item associated with an JSONStream object into an OutputStream object.
General format
void writeToStream ( Json-Destination )
Syntax rules
1.
Json-Destination is an object reference to java.io.OutputStream.
General rules
1.
 
NOTE - If the number of occurrences of a JSON fields is not known at the time the program is written, specifying the DYNAMIC phrase of the OCCURS clause is recommended.
Code example
configuration section.
    class jsonStream  as "com.iscobol.rts.JSONStream"
    class outStream  as "java.io.OutputStream"
working-storage section.
77 objJsonStream object reference jsonStream.
77 objOutStream object reference outStream.
procedure division.
set objOutStream to outStream:>new()
objJsonStream:>writeToStream(objOutStream)

Copyright (c) 2017 Veryant
Contact us
Please share your comments on this manual or on any
Veryant product documentation with the email button at the top left