#include <JSMN.au3>
#include<array.au3>
; Anfrage von Wetter mit JSON Antwort: http://api.openweathermap.org/data/2.5/forecast/daily?q=Berlin&mode=json&units=metric&cnt=1&lang=de
Local $Json1 = FileRead(@ScriptDir & "\test.json")
Local $objJson = Jsmn_Decode($Json1);获取JSON对象
Local $Keys = $objJson.Keys();获取对象所有键值,返回数组
Local $Value = $objJson.Item('chargetype_s');返回对象值
$Keys2 = $Value[0].Keys()
_ArrayDisplay($Keys2)