RewindJSON
Good Morning! How can I use the method Rewind() to read a file JSON?
Discussion (3)0
Comments
Hello, Marcos!
The Rewind function moves the reading pointer back to the start of the stream. It's useful if you want to read a stream from the beginning again.
for example:
do ##class(%ZEN.Auxiliary.jsonProvider).%ParseJSON(obj,,.ObjData)
do ObjData.Rewind()
do ObjData.Read()
Thank you Nadyan, this is what I was looking for. That was of great help.
Yes, very nice ;D