I want to store Array in ValueTrees and create a Document.
If use XML, it seems threre is no Array support, it just displays [ARRAY]…
why not do something like value=“1;2;3;4”
if use JSON, how to convert a ValueTree into JSON and back?
:?
I want to store Array in ValueTrees and create a Document.
If use XML, it seems threre is no Array support, it just displays [ARRAY]…
why not do something like value=“1;2;3;4”
if use JSON, how to convert a ValueTree into JSON and back?
:?
Not possible. The structure of JSON/var data is very different from XML/ValueTrees. To convert them you’d need to write your own algorithm for the data you’re working with.
okay, but Array in XML would be cool… (but till then … okay i use my own converter functions…)
XML doesn’t have any kind of concept of “arrays”!
Yes, anyway it would be great to have the possibility (however) to store a ValueTree with all its possibilities into a MemoryBlock/String.
In times, where on modern OS, a application should store its current state immediately on disk, this would be cool!
If i use arrays then Xml Conversion wouldn’t work.
If i use JSON then ValueTree Conversion would’t work.
If i use dynamic Objects “writeToStream()” wouldn’t work.
If i use strings instead of dynamic Objects, its just a waste of memory/cpu not very elegant.
So i need 1 of this four possibilities