@JSONPUTVALUE[value,type] : Writes the value of a property to a JSON file.

 

Value specifies the new value.

ValueType specifies the type of the value. Possible values are:

0 (Object)

1 (Array)

2 (String)

3 (Number)

4 (Bool)

5 (Null)

6 (Raw)

 

The file must have been opened with a previous @JSONOPEN.

 

Returns 0 on success, or a JSON error code on failure.

 

Example:

 

This batch file creates a JSON file named d:\fido.json, writes the opening brace, writes a property, creates an array, writes two values into the array, closes the array, writes the closing brace, and closes the file:

 

echo %@jsoncreate[d:\fido.json]

echo %@jsonStartObject[]

echo %@jsonPutProperty["name", "fido", 2]

echo %@jsonPutName["previousOwners"]

echo %@jsonStartArray[]

echo %@jsonPutValue["Steve Widgetson",2]

echo %@jsonPutValue["Wanda Widgetson", 2]

echo %@jsonEndarray[]

echo %@jsonEndObject[]

echo %@jsonFlush[]

echo %@jsonclose[]

 

The resulting file d:\json looks like this:

 

{"name":"fido","previousOwners":["Steve Widgetson","Wanda Widgetson"]}

JSON Errors

10231   Unbalanced element tag

10232   Invalid JSON markup

10233   Invalid XPath

10234   DOM tree unavailable

XMLp Errors

101   Invalid attribute index

102   No attributes available

103   Invalid namespace index

104   No namespaces available

105   Invalid element index

106   No elements available

107   Attribute does not exist

201   Unbalanced element tag

202   Unknown element prefix (can't find namespace)

203   Unknown attribute prefix (can't find namespace)

204   Invalid XML markup

205   Invalid end state for parser

206   Document contains unbalanced element

207   Invalid XPath

208   No such child

209   Top element does not match start of path

210   DOM tree unavailable

302   Can't open file.