元帅 将解析后的格式字典解组到Julia对象中 安装: pkg> add Unmarshal 基本用法 目前,该程序包仅在解组JSON对象的情况下进行了测试,但目的是将来还要测试它是否适用于其他数据格式。 import Unmarshal using JSON input = " { \" bar \" : { \" baz \" : 17 }, \" foo \" : 3.14 } " struct Bar baz :: Int end struct Foo bar :: Bar end Unmarshal . unmarshal (Foo, JSON . parse (input)) # Foo(Bar(17)) jstring = JSON . json ( ones (Float64, 3 )) # "[1.0,1.0,1.0]" Unmarshal . unm