私はJSONStringを持っています:
<i>{1={"id":"1","description":"Red","Objects":{"doors":4,"number":4},"life":100}}</i>
この JSONString をハッシュマップにどのように配置しJSONSimple
ますか?
このコードは、 http://code.google.com/p/json-simple/wiki/DecodingExamples#Example_1_-_Convenient_way:_Use_JSONValueの JSON-simple の wiki ページから使用されます。
String s="[{1={"id":"1","description":"Red","Objects": {"doors":4,"number":4},"life":100}}]";
Object obj=JSONValue.parse(s);
JSONArray array=(JSONArray)obj;