can I use `kotlinx` to append a JSON object to an ...
# getting-started
y
can I use
kotlinx
to append a JSON object to an existing JSON file?
g
I’m not sure, I understand your use case. A Json file contains only one object, so what does ‘append’ mean? You can of course load an object from a json file, add other keys with values to it and save it.
y
yeah, that's what I've settled on. thanks. regarding this: what is the Kotlin-endorsed way to have a seekable file writer? a
RandomAccessFile
?
j